結果

問題 No.146 試験監督(1)
ユーザー gorugo30gorugo30
提出日時 2021-02-23 17:03:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 152 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 76,308 KB
最終ジャッジ日時 2024-09-22 12:16:33
合計ジャッジ時間 1,349 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

MOD = 10 ** 9 + 7
N = int(input())
ans = 0
for i in range(N):
    C, D = map(int, input().split())
    ans = (ans + D * ((C + 1) // 2)) % MOD
print(ans)
0