結果
問題 | No.146 試験監督(1) |
ユーザー | ffmm00 |
提出日時 | 2015-06-13 21:17:28 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 374 bytes |
コンパイル時間 | 3,305 ms |
コンパイル使用メモリ | 74,132 KB |
実行使用メモリ | 69,756 KB |
最終ジャッジ日時 | 2024-07-06 19:53:13 |
合計ジャッジ時間 | 6,956 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
import java.util.Scanner; public class N146 { public static void main(String[] args) { Scanner sca = new Scanner(System.in); int n = sca.nextInt(); long A = 0; long mod = 100000007; for (int i = 0; i < n; i++) { Long C = sca.nextLong(); Long D = sca.nextLong() % mod; A += ((C + 1) / 2) % mod * D; A %= mod; } System.out.println(A); } }