結果
問題 | No.146 試験監督(1) |
ユーザー | haruki_57 |
提出日時 | 2015-02-08 23:32:22 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 712 ms / 1,000 ms |
コード長 | 619 bytes |
コンパイル時間 | 2,375 ms |
コンパイル使用メモリ | 74,412 KB |
実行使用メモリ | 54,752 KB |
最終ジャッジ日時 | 2024-06-23 07:23:49 |
合計ジャッジ時間 | 5,885 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 712 ms
54,144 KB |
testcase_01 | AC | 711 ms
54,436 KB |
testcase_02 | AC | 708 ms
54,752 KB |
ソースコード
import java.math.BigInteger; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc=new Scanner(System.in); int N = Integer.parseInt(sc.nextLine()); long c=0; long d=0; long ans = 0; int MOD = 1000000007; for (int i = 0; i < N; i++) { String[] s = sc.nextLine().split(" "); c = Long.parseLong(s[0]); d = Long.parseLong(s[1]); c = (c+1)/2; c %= MOD; d %= MOD; ans = (ans+c*d)%MOD; } System.out.println(ans); } }