結果
問題 | No.146 試験監督(1) |
ユーザー | あかりき |
提出日時 | 2021-02-12 11:45:38 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 135 bytes |
コンパイル時間 | 227 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 87,040 KB |
最終ジャッジ日時 | 2024-07-19 05:58:15 |
合計ジャッジ時間 | 1,607 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
n=int(input()) l=[list(map(int,input().split())) for i in range(n)] ans=0 for i in range(n): ans+=((l[i][0]+1)//2)*l[i][1] print(ans)