結果
問題 | No.146 試験監督(1) |
ユーザー | Tsukasa_Type |
提出日時 | 2018-02-13 17:44:35 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 928 ms / 1,000 ms |
コード長 | 372 bytes |
コンパイル時間 | 2,165 ms |
コンパイル使用メモリ | 74,008 KB |
実行使用メモリ | 69,596 KB |
最終ジャッジ日時 | 2024-05-07 07:16:27 |
合計ジャッジ時間 | 6,657 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 928 ms
68,408 KB |
testcase_01 | AC | 908 ms
69,004 KB |
testcase_02 | AC | 904 ms
69,596 KB |
ソースコード
import java.util.*; public class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { int n = sc.nextInt(); long max = 0; long mod = 1000000007; for (int i=0; i<n; i++) { long leng = sc.nextLong(); long num = sc.nextLong(); max += ((leng+1)/2%mod*(num%mod))%mod; max %= mod; } System.out.println(max); } }