結果
問題 | No.146 試験監督(1) |
ユーザー | HIROPON87069639 |
提出日時 | 2016-02-27 16:22:22 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 187 bytes |
コンパイル時間 | 117 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 9,728 KB |
最終ジャッジ日時 | 2024-09-24 11:41:57 |
合計ジャッジ時間 | 2,095 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
# -*- coding: utf-8 -*- import math N = input() cnt = 0.0 for i in range(N): C, D = map(int, raw_input().split()) cnt += (math.ceil(round(C / 2.0, 0)) * D) % 1000000007 print cnt