結果

問題 No.70 睡眠の重要性!
ユーザー otsunekootsuneko
提出日時 2021-05-07 01:08:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 322 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 51,968 KB
最終ジャッジ日時 2024-09-14 15:44:48
合計ジャッジ時間 1,047 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N = int(input())
ans = 0
for _ in range(N):
    sleep, awake = map(str,input().split())
    H1,H2 = map(int,sleep.split(":"))
    h1,h2 = map(int,awake.split(":"))

    if H1 > h1:
        h1 += 24
    if h2 < H2:
        ans += (h1-H1-1)*60 + 60+(h2-H2)
    else:
        ans += (h1-H1)*60 + h2-H2
print(ans)
0