結果

問題 No.146 試験監督(1)
ユーザー k_kadorak_kadora
提出日時 2015-06-11 00:03:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 846 ms / 1,000 ms
コード長 442 bytes
コンパイル時間 3,102 ms
コンパイル使用メモリ 72,332 KB
実行使用メモリ 67,740 KB
最終ジャッジ日時 2023-09-20 20:41:44
合計ジャッジ時間 7,043 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 846 ms
67,468 KB
testcase_01 AC 823 ms
67,740 KB
testcase_02 AC 843 ms
67,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Test{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int n;
		n = Integer.parseInt(sc.next());
		Long res = (long)0,tempc,tempd;
		for(int i = 0;i<n;i++){
			tempc = ((Long.parseLong(sc.next())+1) / 2) % 1000000007;
			tempd = Long.parseLong(sc.next()) % 1000000007;
			res += ( tempc * tempd )% 1000000007;
		}
		res = res % 1000000007;
		System.out.println(res);
	}
}
0