結果
問題 | No.653 E869120 and Lucky Numbers |
ユーザー | Tsukasa_Type |
提出日時 | 2018-02-23 23:47:52 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,497 bytes |
コンパイル時間 | 2,331 ms |
コンパイル使用メモリ | 77,908 KB |
実行使用メモリ | 55,824 KB |
最終ジャッジ日時 | 2024-10-10 04:46:12 |
合計ジャッジ時間 | 8,543 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 134 ms
53,944 KB |
testcase_01 | AC | 152 ms
54,532 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 169 ms
54,608 KB |
testcase_07 | AC | 134 ms
53,712 KB |
testcase_08 | AC | 171 ms
54,436 KB |
testcase_09 | WA | - |
testcase_10 | AC | 134 ms
54,072 KB |
testcase_11 | WA | - |
testcase_12 | AC | 131 ms
53,616 KB |
testcase_13 | WA | - |
testcase_14 | AC | 135 ms
53,768 KB |
testcase_15 | AC | 142 ms
54,068 KB |
testcase_16 | AC | 134 ms
54,072 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 139 ms
54,076 KB |
testcase_20 | AC | 133 ms
54,104 KB |
testcase_21 | AC | 141 ms
53,856 KB |
testcase_22 | AC | 134 ms
54,076 KB |
testcase_23 | WA | - |
testcase_24 | AC | 132 ms
54,300 KB |
testcase_25 | AC | 136 ms
53,752 KB |
testcase_26 | AC | 133 ms
53,872 KB |
testcase_27 | AC | 137 ms
54,028 KB |
testcase_28 | AC | 199 ms
55,000 KB |
testcase_29 | AC | 194 ms
54,932 KB |
testcase_30 | WA | - |
testcase_31 | AC | 133 ms
53,720 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
ソースコード
import java.util.*; public class Main { static Scanner sc = new Scanner(System.in); public static void main(String[] args) { String s = sc.next(); System.out.println(judge(s)==true?"Yes":"No"); } static boolean judge (String s) { //ケツは2~4、これは確定 // if (s.length()==1) { return false; } else if (s.length()==2) { if (s.equals("12")==false || s.equals("13")==false ||s.equals("14")==false) { return false; } } else { char c = s.charAt(0); if (c!='1' && c!='6' && c!='7' && c!='8') {return false;} c = s.charAt(s.length()-1); if (c!='2' && c!='3' && c!='4') {return false;} //先頭が1の場合 if (s.charAt(0)=='1') { for (int i=1; i<s.length()-1; i++) { c = s.charAt(i); if (c!='3' || c!='4' || c!='5') {return false;} } return true; } //先頭が6か7の場合 else if (s.charAt(0)=='6' || s.charAt(0)=='7') { s = s.substring(0,s.length()-1); s = s.replaceAll("[345]",""); String[] ar = {"1","2","3","4","5","9","0"}; for (int i=0; i<ar.length; i++) { if (s.contains(ar[i])) {return false;} } //もし8が含まれているならそれはただ一つであり一番右側か? if (s.contains("8")) { for (int i=0; i<s.length(); i++) { if (i!=s.length()-1) { if (s.charAt(i)=='8') {return false;} } } } s = s.replaceAll("[678]",""); if (s.equals("")==false) {return false;} } } return true; } }