結果
問題 | No.146 試験監督(1) |
ユーザー | tsunabit |
提出日時 | 2019-05-12 14:14:31 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 575 bytes |
コンパイル時間 | 3,908 ms |
コンパイル使用メモリ | 74,248 KB |
実行使用メモリ | 41,372 KB |
最終ジャッジ日時 | 2024-07-04 02:45:58 |
合計ジャッジ時間 | 5,244 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
ソースコード
import java.util.ArrayList; import java.util.Scanner; public class No146 { public static void main(String[] args) { // 標準入力から読み込む際に、Scannerオブジェクトを使う。 Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int count = 0; for(int i = 0; i < n; i++) { int c = sc.nextInt(); int d = sc.nextInt(); if(c % 2 == 0) { count += c/2 * d; }else { count += (c/2 + 1) * d; } } System.out.println(count); } }