結果
問題 | No.1591 Two Digits |
ユーザー | lavox |
提出日時 | 2021-07-09 21:21:15 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 133 ms / 1,000 ms |
コード長 | 291 bytes |
コンパイル時間 | 2,315 ms |
コンパイル使用メモリ | 74,672 KB |
実行使用メモリ | 41,540 KB |
最終ジャッジ日時 | 2024-07-01 14:41:23 |
合計ジャッジ時間 | 5,580 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
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"); } } }