結果

問題 No.3041 なんとかのはなうらない
ユーザー fog_878fog_878
提出日時 2019-04-01 22:16:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 4,036 ms
コンパイル使用メモリ 71,856 KB
実行使用メモリ 56,052 KB
最終ジャッジ日時 2023-08-18 01:23:17
合計ジャッジ時間 6,974 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,972 KB
testcase_01 AC 120 ms
55,372 KB
testcase_02 AC 121 ms
55,396 KB
testcase_03 AC 121 ms
55,304 KB
testcase_04 AC 122 ms
55,296 KB
testcase_05 AC 122 ms
55,028 KB
testcase_06 AC 122 ms
55,236 KB
testcase_07 AC 122 ms
55,736 KB
testcase_08 AC 124 ms
55,620 KB
testcase_09 AC 121 ms
56,052 KB
testcase_10 AC 121 ms
55,456 KB
testcase_11 AC 122 ms
55,316 KB
testcase_12 AC 123 ms
55,272 KB
testcase_13 AC 122 ms
55,380 KB
testcase_14 AC 120 ms
55,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Main main = new Main();
		main.solve();
	}
	void solve() {
		Scanner sc = new Scanner(System.in);
		@SuppressWarnings("unused")
		int n = Integer.parseInt(sc.next());
		sc.close();
		System.out.println("Yes");
	}

}
0