結果

問題 No.146 試験監督(1)
ユーザー kenkooookenkoooo
提出日時 2015-04-06 09:13:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 367 bytes
コンパイル時間 1,918 ms
コンパイル使用メモリ 71,172 KB
実行使用メモリ 69,520 KB
最終ジャッジ日時 2023-09-17 06:06:29
合計ジャッジ時間 5,872 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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];
		for (int i = 0; i < n; i++) {
			c[i] = koko.nextLong();
			d[i] = koko.nextLong();
		}
		long total = 0;
		System.out.println(total);
	}
}
0