結果

問題 No.146 試験監督(1)
ユーザー TatsuDXTatsuDX
提出日時 2016-09-09 00:00:10
言語 Java
(openjdk 23)
結果
AC  
実行時間 946 ms / 1,000 ms
コード長 348 bytes
コンパイル時間 3,478 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 69,660 KB
最終ジャッジ日時 2024-11-15 22:31:37
合計ジャッジ時間 7,692 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 938 ms
69,660 KB
testcase_01 AC 944 ms
68,808 KB
testcase_02 AC 946 ms
68,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int num = sc.nextInt();
		long sum = 0, e = 1000000007, n, m;
		for(int i = 0; i < num; i++){
			n = ((sc.nextLong()+1)/2) % e;
			m = sc.nextLong() % e;
			sum += n*m;
			sum %= e;
		}
		System.out.println(sum);
	}
}
0