結果
問題 |
No.70 睡眠の重要性!
|
ユーザー |
|
提出日時 | 2018-02-20 19:05:50 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 206 bytes |
コンパイル時間 | 88 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-21 06:58:27 |
合計ジャッジ時間 | 876 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 6 |
ソースコード
def T(s): h,m=map(int,s.split(':')) return h*60+m h=m=0 H=lambda s:s.split(':')[0] M=lambda s:s.split(':')[1] for i in '.'*int(input()): s,e=input().split() a,b=T(s),T(e) b+=(a>b)*1440 m+=b-a