結果
問題 | No.146 試験監督(1) |
ユーザー | chiho_miyako |
提出日時 | 2015-04-06 09:42:51 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 923 bytes |
コンパイル時間 | 1,981 ms |
コンパイル使用メモリ | 77,480 KB |
実行使用メモリ | 66,424 KB |
最終ジャッジ日時 | 2024-07-04 03:20:06 |
合計ジャッジ時間 | 6,141 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception { Scanner koko = new Scanner(System.in); int n = koko.nextInt(); long[] c = new long[n]; long[] d = new long[n]; long total = 0; long[] t = new long[n]; for(int i = 0; i<n; i++){ String c_string = koko.next(); c[i] = Long.parseLong(c_string); String d_string = koko.next(); d[i] = Long.parseLong(d_string); d[i] = d[i]%1000000007; if(c[i]%2==0){ c[i] = (c[i]/2)%1000000007; t[i] = c[i]*d[i]; total = total + t[i]; }else{ c[i] = ((c[i]+1)/2)%1000000007; t[i] = c[i]*d[i]; total = total + t[i]; } } total = total%1000000007; System.out.println(total); } }