結果

問題 No.146 試験監督(1)
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-09-25 23:52:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 998 ms / 1,000 ms
コード長 442 bytes
コンパイル時間 2,058 ms
コンパイル使用メモリ 77,952 KB
実行使用メモリ 69,280 KB
最終ジャッジ日時 2024-10-07 04:43:35
合計ジャッジ時間 6,641 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 998 ms
68,200 KB
testcase_01 AC 988 ms
68,652 KB
testcase_02 AC 985 ms
69,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        long ans = 0;
        long mod = 1000000007;

        for(int i=0; i<n; i++) {
            long c = in.nextLong();
            long d = in.nextLong();
            ans += ((c+1) / 2 % mod * (d%mod)) % mod;
            ans %= mod;
        }

        System.out.println(ans);
    }
}
0