結果

問題 No.1591 Two Digits
ユーザー lavoxlavox
提出日時 2021-07-09 21:21:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 1,000 ms
コード長 291 bytes
コンパイル時間 2,477 ms
コンパイル使用メモリ 71,348 KB
実行使用メモリ 56,188 KB
最終ジャッジ日時 2023-09-14 07:15:28
合計ジャッジ時間 5,094 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
55,544 KB
testcase_01 AC 111 ms
55,956 KB
testcase_02 AC 110 ms
55,556 KB
testcase_03 AC 112 ms
55,892 KB
testcase_04 AC 111 ms
55,928 KB
testcase_05 AC 111 ms
55,800 KB
testcase_06 AC 111 ms
53,632 KB
testcase_07 AC 111 ms
55,804 KB
testcase_08 AC 110 ms
56,104 KB
testcase_09 AC 110 ms
55,728 KB
testcase_10 AC 109 ms
56,052 KB
testcase_11 AC 110 ms
55,608 KB
testcase_12 AC 110 ms
55,836 KB
testcase_13 AC 108 ms
55,520 KB
testcase_14 AC 107 ms
55,920 KB
testcase_15 AC 109 ms
56,008 KB
testcase_16 AC 106 ms
56,068 KB
testcase_17 AC 108 ms
56,188 KB
testcase_18 AC 109 ms
55,960 KB
testcase_19 AC 112 ms
55,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = Integer.parseInt(sc.next());
		sc.close();

		if ( 10 <= N && N <= 99 ) {
			System.out.println("Yes");
		} else {
			System.out.println("No");
		}
	}
}
0