結果
問題 | No.146 試験監督(1) |
ユーザー | k_kadora |
提出日時 | 2015-06-10 23:55:32 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 375 bytes |
コンパイル時間 | 3,377 ms |
コンパイル使用メモリ | 75,124 KB |
実行使用メモリ | 57,496 KB |
最終ジャッジ日時 | 2024-07-06 15:29:05 |
合計ジャッジ時間 | 6,590 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
import java.util.Scanner; public class Test{ public static void main(String[] arg){ Scanner sc = new Scanner(System.in); int n; n = sc.nextInt(); Long res = (long)0,tempc,tempd; for(int i = 0;i<n;i++){ tempc = (sc.nextLong()+1 / 2) % 1000000007; tempd = sc.nextLong() % 1000000007; res += ( tempc * tempd )% 1000000007; } System.out.println(res); } }