結果

問題 No.249 N言っちゃダメゲーム (2)
ユーザー koukonkokoukonko
提出日時 2015-12-22 14:00:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 60 ms / 1,000 ms
コード長 339 bytes
コンパイル時間 3,489 ms
コンパイル使用メモリ 73,268 KB
実行使用メモリ 53,296 KB
最終ジャッジ日時 2023-10-18 22:36:17
合計ジャッジ時間 4,470 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
51,248 KB
testcase_01 AC 59 ms
53,296 KB
testcase_02 AC 57 ms
52,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {
			buff.readLine();
			System.out.println(500);
		} catch (Exception e) {
			e.getStackTrace();
		}
	}
}
0