Submission #157428


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 A - 積雪深差
User showwin
Language Ruby (1.9.3)
Score 0
Code Size 945 Byte
Status RE
Exec Time 61 ms
Memory 4264 KB

Judge Result

Set Name all
Score / Max Score 0 / 100
Status
RE × 20
Set Name Test Cases
all 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.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
Case Name Status Exec Time Memory
00_sample_01.txt RE 57 ms 4264 KB
00_sample_02.txt RE 60 ms 4260 KB
00_sample_03.txt RE 58 ms 4260 KB
test_01.txt RE 55 ms 4252 KB
test_02.txt RE 58 ms 4248 KB
test_03.txt RE 59 ms 4132 KB
test_04.txt RE 58 ms 4124 KB
test_05.txt RE 57 ms 4252 KB
test_06.txt RE 58 ms 4260 KB
test_07.txt RE 58 ms 4132 KB
test_08.txt RE 56 ms 4256 KB
test_09.txt RE 57 ms 4136 KB
test_10.txt RE 56 ms 4124 KB
test_11.txt RE 59 ms 4136 KB
test_12.txt RE 61 ms 4244 KB
test_13.txt RE 57 ms 4136 KB
test_14.txt RE 57 ms 4124 KB
test_15.txt RE 55 ms 4248 KB
test_16.txt RE 59 ms 4248 KB
test_17.txt RE 55 ms 4260 KB