結果
問題 | No.70 睡眠の重要性! |
ユーザー |
|
提出日時 | 2021-05-22 00:02:04 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 40 ms / 5,000 ms |
コード長 | 232 bytes |
コンパイル時間 | 370 ms |
コンパイル使用メモリ | 82,376 KB |
実行使用メモリ | 53,492 KB |
最終ジャッジ日時 | 2024-10-10 10:22:07 |
合計ジャッジ時間 | 1,108 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 6 |
ソースコード
N = int(input())ans = 0for i in range(N):T,t = map(str,input().split())H,M = map(int,T.split(':'))h,m = map(int,t.split(':'))A = (60*24)-(H*60+M)B = h*60+mal = (A+B)%(60*24)ans += alprint(ans)