結果
問題 | No.146 試験監督(1) |
ユーザー | mitsuo |
提出日時 | 2016-05-04 23:40:52 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 735 bytes |
コンパイル時間 | 2,172 ms |
コンパイル使用メモリ | 74,628 KB |
実行使用メモリ | 71,552 KB |
最終ジャッジ日時 | 2024-10-05 07:07:47 |
合計ジャッジ時間 | 6,348 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 960 ms
69,224 KB |
testcase_02 | TLE | - |
ソースコード
package jp.fedom.challange.yuki.q146; import java.math.BigInteger; import java.util.Scanner; public class Main { static BigInteger t = BigInteger.ZERO; static BigInteger TWO = BigInteger.valueOf(2); static BigInteger m = new BigInteger("1000000007"); public static void main(String[] args) { Scanner sc = new Scanner(System.in); long N = sc.nextLong(); for(long i = 0; i < N; i++){ solve(sc.nextBigInteger(), sc.nextBigInteger()); } t = t.mod(m); System.out.println(t.toString()); sc.close(); } public static void solve(BigInteger s, BigInteger k) { if (s.testBit(0) == false) { t = t.add(s.divide(TWO).multiply(k)); } else { t = t.add((s.add(BigInteger.ONE).divide(TWO).multiply(k))); } } }