結果
問題 | No.146 試験監督(1) |
ユーザー | fkwnw3_1243 |
提出日時 | 2017-04-29 18:32:20 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 891 bytes |
コンパイル時間 | 2,259 ms |
コンパイル使用メモリ | 78,352 KB |
実行使用メモリ | 63,072 KB |
最終ジャッジ日時 | 2024-09-13 22:59:23 |
合計ジャッジ時間 | 7,254 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.Arrays; import java.util.stream.Stream; import static java.lang.System.in; public class Main { public static void main(String[] args) throws IOException { BufferedReader reader = new BufferedReader(new InputStreamReader(in)); long N = Long.parseLong(reader.readLine()); System.out.println(N); long accomodates = 0; for (long desk = 0; desk < N; desk++) { String[] inputs = reader.readLine().split(" "); long c = Long.parseLong(inputs[0]); long d = Long.parseLong(inputs[1]); System.out.println("C;"+c); System.out.println("D;"+d); accomodates += (((c + 2 - 1) / 2) % (1000000007)) * (d % (1000000007)); } System.out.println(accomodates); } }