結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
76,132 KB
testcase_01 AC 138 ms
76,328 KB
testcase_02 AC 141 ms
75,884 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