結果
問題 | No.653 E869120 and Lucky Numbers |
ユーザー | ああいい |
提出日時 | 2022-01-09 22:28:42 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 49 ms / 2,000 ms |
コード長 | 994 bytes |
コンパイル時間 | 299 ms |
コンパイル使用メモリ | 82,368 KB |
実行使用メモリ | 62,896 KB |
最終ジャッジ日時 | 2024-09-13 18:24:04 |
合計ジャッジ時間 | 2,665 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,224 KB |
testcase_01 | AC | 44 ms
58,368 KB |
testcase_02 | AC | 43 ms
59,008 KB |
testcase_03 | AC | 42 ms
59,392 KB |
testcase_04 | AC | 41 ms
58,240 KB |
testcase_05 | AC | 41 ms
58,112 KB |
testcase_06 | AC | 49 ms
60,160 KB |
testcase_07 | AC | 39 ms
51,968 KB |
testcase_08 | AC | 43 ms
58,240 KB |
testcase_09 | AC | 38 ms
51,840 KB |
testcase_10 | AC | 39 ms
52,096 KB |
testcase_11 | AC | 38 ms
51,712 KB |
testcase_12 | AC | 38 ms
51,840 KB |
testcase_13 | AC | 38 ms
52,096 KB |
testcase_14 | AC | 38 ms
52,096 KB |
testcase_15 | AC | 38 ms
51,840 KB |
testcase_16 | AC | 37 ms
51,840 KB |
testcase_17 | AC | 39 ms
51,840 KB |
testcase_18 | AC | 38 ms
51,968 KB |
testcase_19 | AC | 38 ms
52,096 KB |
testcase_20 | AC | 39 ms
51,840 KB |
testcase_21 | AC | 38 ms
51,712 KB |
testcase_22 | AC | 38 ms
52,420 KB |
testcase_23 | AC | 38 ms
52,476 KB |
testcase_24 | AC | 38 ms
53,248 KB |
testcase_25 | AC | 38 ms
52,436 KB |
testcase_26 | AC | 38 ms
52,624 KB |
testcase_27 | AC | 37 ms
52,948 KB |
testcase_28 | AC | 46 ms
62,896 KB |
testcase_29 | AC | 45 ms
62,488 KB |
testcase_30 | AC | 44 ms
62,284 KB |
testcase_31 | AC | 37 ms
52,272 KB |
testcase_32 | AC | 38 ms
52,996 KB |
testcase_33 | AC | 38 ms
52,076 KB |
ソースコード
p = input() l = list(map(int,list(p))) import sys if len(l) == 1: print('No') exit() n = 'No' y = 'Yes' if 2 <= l[-1] <= 4: pass else: print(n) exit() if l[0] == 1: for i in l[1:-1]: if 3 <= i <= 5: pass else: print(n) exit() print(y) exit() if p.count('8') >= 2: print(n) exit() if p.count('8') == 1: i = 0 while l[i] != 8: if l[i] != 6 and l[i] != 7: print(n) exit() i += 1 i += 1 for j in range(i,len(l)-1): if 3 <= l[j] <= 5: pass else: print(n) exit() print(y) exit() a = p.count('6') + p.count('7') if a == 0: print(n) exit() for i in range(a): if l[i] != 6 and l[i] != 7: print(n) exit() if l[a-1] == 6: print(n) exit() for j in range(a,len(l)-1): if 3 <= l[j] <= 5: pass else: print(n) exit() print(y)