結果

問題 No.146 試験監督(1)
ユーザー tookunn_1213tookunn_1213
提出日時 2015-08-15 19:09:01
言語 Python2
(2.7.18)
結果
AC  
実行時間 318 ms / 1,000 ms
コード長 168 bytes
コンパイル時間 53 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-18 09:44:15
合計ジャッジ時間 1,840 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 318 ms
6,816 KB
testcase_01 AC 316 ms
6,944 KB
testcase_02 AC 317 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
countSum = 0
for i in xrange(N):
	C,D = map(long,raw_input().split())
	countSum += ((C + 1) / 2) * D 
	countSum %= (1000000000L + 7)
print countSum
0