結果

問題 No.70 睡眠の重要性!
ユーザー gigurururugigurururu
提出日時 2014-11-18 23:44:57
言語 Python2
(2.7.18)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 183 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 7,200 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-10 21:06:17
合計ジャッジ時間 607 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,400 KB
testcase_01 AC 9 ms
6,272 KB
testcase_02 AC 9 ms
6,400 KB
testcase_03 AC 9 ms
6,272 KB
testcase_04 AC 9 ms
6,400 KB
testcase_05 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

s=0
for _ in range(input()):
    a,b=raw_input().split()
    a1,a2=map(int,a.split(":"))
    b1,b2=map(int,b.split(":"))
    t=b1-a1
    if t<0:t+=24
    s+=t*60+b2-a2
print s
0