結果
問題 | No.70 睡眠の重要性! |
ユーザー | packet0 |
提出日時 | 2014-11-19 00:33:46 |
言語 | D (dmd 2.109.1) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 280 bytes |
コンパイル時間 | 1,417 ms |
コンパイル使用メモリ | 134,552 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-12 01:35:16 |
合計ジャッジ時間 | 1,963 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | WA | - |
ソースコード
//No.70 睡眠の重要性!@眠い import std.stdio; void main() { uint n, total; readf("%d\n", &n); for(uint i=0; i<n; i++) { uint H, M, h, m; readf("%d:%d %d:%d\n", &H, &M, &h, &m); total += ((24+h)*60 + m) - ((H>12?H:24+H)*60 + M); } writeln(total); }