結果
問題 | No.146 試験監督(1) |
ユーザー | TatsuDX |
提出日時 | 2016-09-08 23:57:15 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 344 bytes |
コンパイル時間 | 3,283 ms |
コンパイル使用メモリ | 74,052 KB |
実行使用メモリ | 68,996 KB |
最終ジャッジ日時 | 2024-11-15 22:31:13 |
合計ジャッジ時間 | 7,865 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
import java.util.Scanner; public class Test { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int num = sc.nextInt(); long sum = 0, e = 1000000007, n, m; for(int i = 0; i < num; i++){ n = (sc.nextLong()+1) % e; m = sc.nextLong() % e; sum += n*m; sum %= e; } System.out.println(sum); } }