結果

問題 No.70 睡眠の重要性!
ユーザー notsix4notsix4
提出日時 2021-11-24 20:56:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 241 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-27 06:46:54
合計ジャッジ時間 770 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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
    a+=gh*60+gm-wh*60-wm
print(a)
    
0