Submission #157432


Source Code Expand

n = gets.to_i
s=[]
e=[]
for i in 0..n-1 do
  s[i],e[i] = gets.chomp.split("-").map{|time| time.to_i}
end
#丸め処理
for i in 0..n-1 do
  s[i] = s[i] - s[i]%5
end
for i in 0..n-1 do
  if e[i]%5 != 0
    e[i] = e[i] + 5-(e[i]%5)
  end
end
#ソーティング
for i in 0..n-2 do
  for j in 0..n-i-2 do
    if s[j] > s[j+1]
      temp_s = s[j]
      s[j] = s[j+1]
      s[j+1] = temp_s
      temp_e = e[j]
      e[j] = e[j+1]
      e[j+1] = temp_e
    end
  end
end
#集計
for i in 0..n-2 do
  for j in 0..n-i-2 do
    # ←--------→
    #      ←-------→
    if e[j] >= s[j+1] && e[j] <= e[j+1]
      e[j] = e[j+1]
      s[j+1] = s[j]
    # ←--------→
    #    ←--→
    elsif e[j] > s[j+1] && e[j] >= e[j+1]
      s[j+1] = s[j]
      e[j+1] = e[j]
    end
  end
end
#出力
print "#{s[i]}-#{e[i]}\n"
for i in 1..n-1 do
  print "#{s[i]}-#{e[i]}\n" if !(s[i]==s[i-1] && e[i]==e[i-1])
end
      

Submission Info

Submission Time
Task D - 感雨時刻の整理
User showwin
Language Ruby (1.9.3)
Score 0
Code Size 955 Byte
Status TLE
Exec Time 2032 ms
Memory 4832 KB

Judge Result

Set Name all
Score / Max Score 0 / 100
Status
AC × 2
WA × 26
TLE × 20
Set Name Test Cases
all 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt, cho_cho_chokudai.txt, chokudai_ga_cho.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt, test_17.txt, test_18.txt, test_19.txt, test_20.txt, test_21.txt, test_22.txt, test_23.txt, test_24.txt, test_25.txt, test_26.txt, test_27.txt, test_28.txt, test_29.txt, test_30.txt, test_31.txt, test_32.txt, test_33.txt, test_34.txt, test_35.txt, test_36.txt, test_37.txt, test_38.txt, test_39.txt, test_40.txt, test_41.txt, test_42.txt, test_43.txt
Case Name Status Exec Time Memory
00_sample_01.txt AC 56 ms 4036 KB
00_sample_02.txt WA 54 ms 4084 KB
00_sample_03.txt AC 56 ms 4068 KB
cho_cho_chokudai.txt TLE 2032 ms 4792 KB
chokudai_ga_cho.txt TLE 2031 ms 4792 KB
test_01.txt WA 67 ms 4076 KB
test_02.txt WA 70 ms 4088 KB
test_03.txt WA 64 ms 4056 KB
test_04.txt WA 67 ms 4084 KB
test_05.txt WA 68 ms 4080 KB
test_06.txt WA 88 ms 4084 KB
test_07.txt WA 70 ms 4080 KB
test_08.txt WA 66 ms 4084 KB
test_09.txt WA 272 ms 4084 KB
test_10.txt WA 294 ms 4104 KB
test_11.txt WA 211 ms 4088 KB
test_12.txt WA 156 ms 4076 KB
test_13.txt WA 85 ms 4088 KB
test_14.txt WA 233 ms 4084 KB
test_15.txt WA 313 ms 4084 KB
test_16.txt WA 77 ms 4084 KB
test_17.txt WA 230 ms 4080 KB
test_18.txt WA 84 ms 4080 KB
test_19.txt WA 167 ms 4064 KB
test_20.txt WA 188 ms 4088 KB
test_21.txt TLE 2032 ms 4788 KB
test_22.txt TLE 2031 ms 4796 KB
test_23.txt TLE 2031 ms 4792 KB
test_24.txt TLE 2032 ms 4788 KB
test_25.txt TLE 2032 ms 4792 KB
test_26.txt TLE 2032 ms 4792 KB
test_27.txt TLE 2032 ms 4832 KB
test_28.txt TLE 2032 ms 4788 KB
test_29.txt WA 54 ms 4124 KB
test_30.txt WA 55 ms 4080 KB
test_31.txt TLE 2032 ms 4184 KB
test_32.txt WA 57 ms 4080 KB
test_33.txt TLE 2032 ms 4640 KB
test_34.txt WA 55 ms 4132 KB
test_35.txt WA 94 ms 4084 KB
test_36.txt TLE 2032 ms 4792 KB
test_37.txt TLE 2032 ms 4788 KB
test_38.txt TLE 2032 ms 4788 KB
test_39.txt TLE 2032 ms 4788 KB
test_40.txt TLE 2032 ms 4792 KB
test_41.txt TLE 2032 ms 4788 KB
test_42.txt TLE 2032 ms 4792 KB
test_43.txt TLE 2032 ms 4784 KB