結果
問題 | No.653 E869120 and Lucky Numbers |
ユーザー | Freed_0929 |
提出日時 | 2018-03-03 02:14:08 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,361 bytes |
コンパイル時間 | 1,937 ms |
コンパイル使用メモリ | 77,032 KB |
実行使用メモリ | 46,060 KB |
最終ジャッジ日時 | 2024-06-23 02:26:44 |
合計ジャッジ時間 | 6,940 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 109 ms
40,620 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 106 ms
39,852 KB |
testcase_24 | AC | 105 ms
39,768 KB |
testcase_25 | AC | 111 ms
40,744 KB |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | AC | 102 ms
39,844 KB |
testcase_32 | AC | 111 ms
41,004 KB |
testcase_33 | AC | 112 ms
40,924 KB |
ソースコード
import java.util.Scanner; import java.util.Arrays; import java.util.ArrayDeque; import java.util.Queue; import java.util.LinkedList; public class Main { public static void main(String[] args) { new Main().solve(); } void solve() { Scanner sc = new Scanner(System.in); int p = sc.nextInt(); int val = String.valueOf(p).length(); boolean ans = true; for (int i = 0; i < val && ans == true; i++) { if (i == 0) { if (p / (int) Math.pow(10, val - 1) != 1) { ans = false; break; } continue; } if (i == val - 1) { if (p % 10 == 2 || p % 10 == 3 || p % 10 == 4) { continue; } else { ans = false; break; } } if (p / (int) Math.pow(10, val - 1 - i) % 10 == 4 || p / (int) Math.pow(10, val - 1 - i) % 10 == 3 || p / (int) Math.pow(10, val - 1 - i) % 10 == 5) { ans = true; continue; } else { ans = false; break; } } if (ans == false) { System.out.println("No"); } else { System.out.println("Yes"); } } }