結果
問題 | No.146 試験監督(1) |
ユーザー | nCk_cv |
提出日時 | 2016-01-20 17:41:39 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 713 bytes |
コンパイル時間 | 2,218 ms |
コンパイル使用メモリ | 74,628 KB |
実行使用メモリ | 69,552 KB |
最終ジャッジ日時 | 2024-09-21 14:50:30 |
合計ジャッジ時間 | 8,283 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
ソースコード
import java.util.*; import java.math.*; import java.io.*; public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); BigInteger bi = new BigInteger("0"); int n = sc.nextInt(); BigInteger sum = new BigInteger("0"); for(int i = 0; i < n; i++) { BigInteger c = sc.nextBigInteger(); BigInteger d = sc.nextBigInteger(); BigInteger e = new BigInteger("0"); e = c.divide(new BigInteger("2")).add(new BigInteger("1")); if(c.mod(new BigInteger("2")).equals(new BigInteger("0"))) { e = e.subtract(new BigInteger("1")); } sum = sum.add(e.multiply(d)); sum = sum.mod(new BigInteger("1000000007")); } System.out.println(sum.toString()); } }