Submission #157425


Source Code Expand

n = gets.to_i
s=[]
e=[]
for i in 0..n-1 do
  s[i],e[i] = gets.chomp.split("-").map{|e| e.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 947 Byte
Status TLE
Exec Time 2033 ms
Memory 4920 KB

Compile Error

./Main.rb:5: warning: shadowing outer local variable - e

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 58 ms 4208 KB
00_sample_02.txt WA 54 ms 4208 KB
00_sample_03.txt AC 56 ms 4208 KB
cho_cho_chokudai.txt TLE 2032 ms 4920 KB
chokudai_ga_cho.txt TLE 2033 ms 4884 KB
test_01.txt WA 66 ms 4208 KB
test_02.txt WA 70 ms 4208 KB
test_03.txt WA 65 ms 4208 KB
test_04.txt WA 62 ms 4208 KB
test_05.txt WA 64 ms 4208 KB
test_06.txt WA 81 ms 4212 KB
test_07.txt WA 69 ms 4204 KB
test_08.txt WA 65 ms 4184 KB
test_09.txt WA 234 ms 4208 KB
test_10.txt WA 262 ms 4208 KB
test_11.txt WA 184 ms 4204 KB
test_12.txt WA 140 ms 4208 KB
test_13.txt WA 82 ms 4212 KB
test_14.txt WA 214 ms 4208 KB
test_15.txt WA 284 ms 4208 KB
test_16.txt WA 73 ms 4208 KB
test_17.txt WA 206 ms 4188 KB
test_18.txt WA 81 ms 4212 KB
test_19.txt WA 144 ms 4212 KB
test_20.txt WA 167 ms 4208 KB
test_21.txt TLE 2032 ms 4920 KB
test_22.txt TLE 2032 ms 4920 KB
test_23.txt TLE 2033 ms 4916 KB
test_24.txt TLE 2031 ms 4916 KB
test_25.txt TLE 2031 ms 4920 KB
test_26.txt TLE 2031 ms 4920 KB
test_27.txt TLE 2032 ms 4916 KB
test_28.txt TLE 2032 ms 4912 KB
test_29.txt WA 62 ms 4212 KB
test_30.txt WA 58 ms 4212 KB
test_31.txt TLE 2032 ms 4336 KB
test_32.txt WA 63 ms 4204 KB
test_33.txt TLE 2033 ms 4852 KB
test_34.txt WA 60 ms 4212 KB
test_35.txt WA 90 ms 4208 KB
test_36.txt TLE 2031 ms 4916 KB
test_37.txt TLE 2032 ms 4916 KB
test_38.txt TLE 2031 ms 4920 KB
test_39.txt TLE 2033 ms 4912 KB
test_40.txt TLE 2032 ms 4920 KB
test_41.txt TLE 2032 ms 4920 KB
test_42.txt TLE 2033 ms 4920 KB
test_43.txt TLE 2032 ms 4916 KB