結果

問題 No.146 試験監督(1)
ユーザー JunOnumaJunOnuma
提出日時 2017-06-06 11:51:02
言語 Python2
(2.7.18)
結果
AC  
実行時間 296 ms / 1,000 ms
コード長 135 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-09-22 11:42:09
合計ジャッジ時間 1,772 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
9,344 KB
testcase_01 AC 292 ms
9,344 KB
testcase_02 AC 289 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(raw_input())
cnt = 0
for _ in range(n):
    c,d = map(int, raw_input().split())
    cnt += (c+1)/2 * d
print cnt % (10**9 + 7)
0