結果
問題 | No.146 試験監督(1) |
ユーザー | pof |
提出日時 | 2019-07-07 21:29:35 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 122 bytes |
コンパイル時間 | 159 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-10-05 11:50:30 |
合計ジャッジ時間 | 2,680 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
n = int(input()) import math r=0 for i in range(n): c1,c2=map(int,input().split()) r+=math.ceil(c1/2)*c2 print(r)