結果
問題 | No.146 試験監督(1) |
ユーザー | k_kadora |
提出日時 | 2015-06-10 23:41:47 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 935 ms / 1,000 ms |
コード長 | 475 bytes |
コンパイル時間 | 3,770 ms |
コンパイル使用メモリ | 74,648 KB |
実行使用メモリ | 69,824 KB |
最終ジャッジ日時 | 2024-07-06 15:28:45 |
合計ジャッジ時間 | 7,978 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 935 ms
68,908 KB |
testcase_01 | AC | 851 ms
68,872 KB |
testcase_02 | AC | 929 ms
69,824 KB |
ソースコード
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(); if(tempc % 2 == 0){ tempc = (tempc / 2) % 1000000007; }else{ tempc = (tempc / 2 +1) % 1000000007; } tempd = sc.nextLong() % 1000000007; res = (res + tempc * tempd )% 1000000007; } System.out.println(res); } }