結果

問題 No.8098 tan 2
ユーザー CuriousFairy315
提出日時 2023-03-31 21:21:53
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 404 bytes
コンパイル時間 2,367 ms
コンパイル使用メモリ 74,932 KB
実行使用メモリ 54,388 KB
最終ジャッジ日時 2024-09-22 23:52:20
合計ジャッジ時間 4,255 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11 WA * 1
権限があれば一括ダウンロードができます

ソースコード

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() == 1) out.println("Yes");
			else out.println("No");
		}
	}
}
0