結果

問題 No.146 試験監督(1)
ユーザー kenkooookenkoooo
提出日時 2015-04-06 09:29:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 686 ms / 1,000 ms
コード長 728 bytes
コンパイル時間 1,994 ms
コンパイル使用メモリ 74,676 KB
実行使用メモリ 66,176 KB
最終ジャッジ日時 2024-07-04 03:19:31
合計ジャッジ時間 5,241 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 667 ms
65,912 KB
testcase_01 AC 674 ms
65,992 KB
testcase_02 AC 686 ms
66,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner koko = new Scanner(System.in);
		int n = Integer.parseInt(koko.nextLine());

		long total = 0;
		for (int i = 0; i < n; i++) {
			String[] input = koko.nextLine().split(" ");
			long c = Long.parseLong(input[0]);
			long d = Long.parseLong(input[1]);
			d = d % 1000000007;

			if (c % 2 == 0) {
				long e = c / 2;
				e = e % 1000000007;
				long t = e * d;
				t = t % 1000000007;
				total = total + t;
			} else {
				long e = (c + 1) / 2;
				e = e % 1000000007;
				long t = e * d;

				t = t % 1000000007;
				total = total + t;
			}

			total = total % 1000000007;
		}
		System.out.println(total);
	}
}
0