結果

問題 No.146 試験監督(1)
ユーザー Pump0129Pump0129
提出日時 2018-03-27 23:34:38
言語 Java
(openjdk 23)
結果
AC  
実行時間 727 ms / 1,000 ms
コード長 641 bytes
コンパイル時間 2,386 ms
コンパイル使用メモリ 75,996 KB
実行使用メモリ 55,348 KB
最終ジャッジ日時 2024-06-25 12:57:40
合計ジャッジ時間 5,572 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 727 ms
55,056 KB
testcase_01 AC 707 ms
55,072 KB
testcase_02 AC 704 ms
55,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no146;

import java.util.Scanner;

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

        int cnt = Integer.parseInt(scan.nextLine());

        long capacity = 0;

        for (int i = 0; i < cnt; i++) {
            String[] data = scan.nextLine().split(" ");

            long c = (Long.parseLong(data[0]) + 1) / 2 % 1000000007L;
            long d = Long.parseLong(data[1]) % 1000000007L;

            capacity += c * d;
            capacity %= 1000000007L;
        }

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