結果

問題 No.3041 なんとかのはなうらない
ユーザー fog_878fog_878
提出日時 2019-04-01 22:16:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 3,619 ms
コンパイル使用メモリ 74,760 KB
実行使用メモリ 41,316 KB
最終ジャッジ日時 2024-05-05 08:07:09
合計ジャッジ時間 5,451 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,080 KB
testcase_01 AC 124 ms
41,264 KB
testcase_02 AC 122 ms
40,808 KB
testcase_03 AC 122 ms
40,996 KB
testcase_04 AC 109 ms
40,292 KB
testcase_05 AC 124 ms
41,144 KB
testcase_06 AC 124 ms
40,968 KB
testcase_07 AC 125 ms
40,804 KB
testcase_08 AC 121 ms
41,304 KB
testcase_09 AC 124 ms
41,316 KB
testcase_10 AC 121 ms
41,180 KB
testcase_11 AC 122 ms
40,968 KB
testcase_12 AC 109 ms
40,292 KB
testcase_13 AC 127 ms
41,048 KB
testcase_14 AC 127 ms
41,088 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