結果

問題 No.146 試験監督(1)
ユーザー tentententen
提出日時 2020-11-05 18:58:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 944 ms / 1,000 ms
コード長 396 bytes
コンパイル時間 2,554 ms
コンパイル使用メモリ 74,036 KB
実行使用メモリ 58,552 KB
最終ジャッジ日時 2024-07-22 11:17:42
合計ジャッジ時間 6,450 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 852 ms
57,528 KB
testcase_01 AC 834 ms
57,392 KB
testcase_02 AC 944 ms
58,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long ans = 0;
		for (int i = 0; i < n; i++) {
		    long c = sc.nextLong();
		    long d = sc.nextLong() % MOD;
		    ans += (c + 1) / 2 % MOD * d % MOD;
		    ans %= MOD;
		}
		System.out.println(ans);
	}
}
0