結果

問題 No.3098 tan 2
ユーザー CuriousFairy315CuriousFairy315
提出日時 2023-03-31 21:22:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 405 bytes
コンパイル時間 2,132 ms
コンパイル使用メモリ 74,716 KB
実行使用メモリ 57,860 KB
最終ジャッジ日時 2023-10-24 07:06:39
合計ジャッジ時間 4,544 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
56,304 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 126 ms
57,412 KB
testcase_04 WA -
testcase_05 AC 112 ms
56,148 KB
testcase_06 WA -
testcase_07 AC 125 ms
57,520 KB
testcase_08 AC 124 ms
57,584 KB
testcase_09 AC 118 ms
56,292 KB
testcase_10 WA -
testcase_11 AC 125 ms
57,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import static java.lang.System.err;

public class Main {
	public static void main(String[] args) {
		java.io.PrintWriter out = new java.io.PrintWriter(System.out);
		new Main(out);
		out.flush();
		err.flush();
	}

	public Main(java.io.PrintWriter out) {
		try (java.util.Scanner sc = new java.util.Scanner(System.in)) {
			if (sc.nextInt() == 45) out.println("Yes");
			else out.println("No");
		}
	}
}
0