結果
問題 |
No.146 試験監督(1)
|
ユーザー |
|
提出日時 | 2015-08-15 16:53:25 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 121 bytes |
コンパイル時間 | 82 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-18 09:43:09 |
合計ジャッジ時間 | 2,137 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 3 |
ソースコード
res = 0 n = int(input()) for i in range(n): c, d = map(int, input().split()) res += ((c + 1) // 2) * d print(res)