結果

問題 No.653 E869120 and Lucky Numbers
ユーザー RyutoRyuto
提出日時 2018-03-19 17:29:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 915 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 64,364 KB
最終ジャッジ日時 2024-06-10 19:58:51
合計ジャッジ時間 2,524 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,428 KB
testcase_01 AC 44 ms
58,172 KB
testcase_02 AC 46 ms
61,028 KB
testcase_03 AC 44 ms
60,624 KB
testcase_04 AC 41 ms
59,536 KB
testcase_05 AC 42 ms
59,112 KB
testcase_06 AC 45 ms
61,484 KB
testcase_07 AC 37 ms
53,020 KB
testcase_08 AC 41 ms
59,992 KB
testcase_09 AC 36 ms
52,708 KB
testcase_10 AC 36 ms
53,492 KB
testcase_11 AC 35 ms
53,056 KB
testcase_12 AC 35 ms
52,156 KB
testcase_13 AC 36 ms
52,620 KB
testcase_14 AC 36 ms
53,316 KB
testcase_15 AC 36 ms
52,220 KB
testcase_16 AC 38 ms
52,828 KB
testcase_17 AC 40 ms
52,544 KB
testcase_18 AC 39 ms
52,928 KB
testcase_19 WA -
testcase_20 AC 39 ms
52,680 KB
testcase_21 AC 41 ms
52,184 KB
testcase_22 AC 39 ms
53,132 KB
testcase_23 AC 37 ms
52,220 KB
testcase_24 AC 37 ms
52,944 KB
testcase_25 AC 38 ms
53,140 KB
testcase_26 AC 37 ms
52,556 KB
testcase_27 AC 36 ms
52,780 KB
testcase_28 AC 48 ms
64,024 KB
testcase_29 AC 50 ms
64,364 KB
testcase_30 AC 49 ms
62,976 KB
testcase_31 AC 38 ms
52,352 KB
testcase_32 AC 38 ms
51,900 KB
testcase_33 AC 38 ms
52,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python

p = str(input())
plist = [int(x) for x in list(p)]

if len(plist) == 1:
    print('No')
    quit()
elif len(plist) == 2:
    if 12 <= int(p) <= 14:
        print('Yes')
    else:
        print('No')
    quit()

if 1 >= plist[-1] or plist[-1] >= 5:
    print('No')
    quit()

if plist[0] == 1:
    if max(plist[1:-1]) <= 5 and min(plist[1:-1]) >= 3:
        print('Yes')
    else:
        print('No')
    quit()
elif 6 <= plist[0] <= 8:
    sw = 0
    for ps in plist[:-1]:
        if sw != 0 and 3 <= ps <= 5:
            sw = 3
            continue
        elif 0 <= sw <= 1 and ps == 6:
            sw = 0
            continue
        elif 0 <= sw <= 2 and ps == 7:
            sw = 1
            continue
        elif 0 <= sw <= 2 and ps == 8:
            sw = 2
            continue
        else:
            print('No')
            quit()
else:
    print('No')
    quit()

print('Yes')
0