結果

問題 No.3098 tan 2
ユーザー CuriousFairy315CuriousFairy315
提出日時 2023-03-31 21:22:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 405 bytes
コンパイル時間 2,744 ms
コンパイル使用メモリ 74,780 KB
実行使用メモリ 55,912 KB
最終ジャッジ日時 2024-09-22 23:53:06
合計ジャッジ時間 4,600 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,920 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 131 ms
53,828 KB
testcase_04 WA -
testcase_05 AC 135 ms
54,204 KB
testcase_06 WA -
testcase_07 AC 133 ms
54,028 KB
testcase_08 AC 137 ms
54,004 KB
testcase_09 AC 132 ms
53,928 KB
testcase_10 WA -
testcase_11 AC 133 ms
53,988 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