結果

問題 No.146 試験監督(1)
ユーザー RK PythonRK Python
提出日時 2020-06-03 20:58:31
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 353 ms / 1,000 ms
コード長 139 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-25 20:28:10
合計ジャッジ時間 2,575 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 345 ms
10,368 KB
testcase_01 AC 353 ms
10,496 KB
testcase_02 AC 353 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9 + 7
N = int(input())
t = 0
for _ in range(N):
    c,d = map(int, input().split())
    t += ((c+1)//2) * d
    t %= MOD
print(t)
0