結果
問題 | No.146 試験監督(1) |
ユーザー | fkwnw3_1243 |
提出日時 | 2017-04-29 18:36:06 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 719 bytes |
コンパイル時間 | 1,977 ms |
コンパイル使用メモリ | 74,604 KB |
実行使用メモリ | 59,564 KB |
最終ジャッジ日時 | 2024-09-13 22:59:27 |
合計ジャッジ時間 | 3,999 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; 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()); long accomodates = 0; for (long desk = 0; desk < N; desk++) { String[] inputs = reader.readLine().split(" "); long c = (((Long.parseLong(inputs[0]) + 2 - 1)) / 2) % (1000000007); long d = Long.parseLong(inputs[1]) % 1000000007; accomodates += c * d; } System.out.println(accomodates); } }