結果

問題 No.70 睡眠の重要性!
ユーザー notsix4notsix4
提出日時 2021-11-24 21:00:37
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 285 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-27 06:50:42
合計ジャッジ時間 759 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

n=int(input())
a=0
for i in range(n):
    s=input().split()
    w=s[0].split(":")
    g=s[1].split(":")
    wh=int(w[0])
    wm=int(w[1])
    gh=int(g[0])
    gm=int(g[1])
    if wh>gh:
        gh=gh+24
    elif wh==gh and gm<wm:
        gh=gh+24
    a+=gh*60+gm-wh*60-wm
print(a)
    
0