結果
問題 | No.146 試験監督(1) |
ユーザー | koukonko |
提出日時 | 2015-12-12 16:39:41 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 681 ms / 1,000 ms |
コード長 | 799 bytes |
コンパイル時間 | 2,156 ms |
コンパイル使用メモリ | 76,228 KB |
実行使用メモリ | 48,012 KB |
最終ジャッジ日時 | 2024-09-15 08:44:55 |
合計ジャッジ時間 | 5,459 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 668 ms
48,012 KB |
testcase_01 | AC | 681 ms
47,932 KB |
testcase_02 | AC | 637 ms
47,956 KB |
ソースコード
import java.io.BufferedReader; import java.io.InputStreamReader; import java.math.BigInteger; public class Main { public static void main(String[] args) { BufferedReader read = new BufferedReader(new InputStreamReader(System.in)); try { int count = Integer.parseInt(read.readLine()); BigInteger ans = new BigInteger("0"); while (count-- > 0) { String[] box = read.readLine().split(" "); int add = 0; if ((Long.parseLong(box[0]) % 2) == 1) { add = 1; } BigInteger fir = new BigInteger("" + ((Long.parseLong(box[0]) / 2) + add)); ans = ans.add(fir.multiply(new BigInteger(Long.parseLong(box[1]) + ""))); ans = ans.mod(new BigInteger("1000000007")); } System.out.println(ans.toString()); } catch (Exception e) { e.printStackTrace(); } } }