結果
問題 | No.146 試験監督(1) |
ユーザー | ffmm00 |
提出日時 | 2015-06-13 21:28:14 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 504 bytes |
コンパイル時間 | 3,662 ms |
コンパイル使用メモリ | 75,852 KB |
実行使用メモリ | 69,780 KB |
最終ジャッジ日時 | 2024-07-06 19:53:23 |
合計ジャッジ時間 | 8,053 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
ソースコード
import java.util.Scanner; public class N146 { public static void main(String[] args) { Scanner sca = new Scanner(System.in); int n = sca.nextInt(); long A = 0; long mod = 100000007; for (int i = 0; i < n; i++) { Long C = sca.nextLong(); Long D = sca.nextLong(); if (C % 2 == 0) { long t = C / 2; t %= mod; D %= mod; A += t * D; } else { long t = C / 2 + 1; t %= mod; D %= mod; A += t * D; } A %= mod; } System.out.println(A); } }