結果

問題 No.653 E869120 and Lucky Numbers
ユーザー RyutoRyuto
提出日時 2018-03-19 17:28:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 896 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 63,372 KB
最終ジャッジ日時 2024-06-10 19:56:43
合計ジャッジ時間 2,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,636 KB
testcase_01 AC 42 ms
59,060 KB
testcase_02 AC 44 ms
61,444 KB
testcase_03 AC 44 ms
60,872 KB
testcase_04 AC 41 ms
60,032 KB
testcase_05 AC 44 ms
59,020 KB
testcase_06 AC 47 ms
60,964 KB
testcase_07 AC 38 ms
53,064 KB
testcase_08 AC 42 ms
59,784 KB
testcase_09 AC 38 ms
52,768 KB
testcase_10 AC 36 ms
52,884 KB
testcase_11 AC 36 ms
52,732 KB
testcase_12 AC 36 ms
53,160 KB
testcase_13 AC 37 ms
52,068 KB
testcase_14 AC 36 ms
52,092 KB
testcase_15 AC 37 ms
52,564 KB
testcase_16 AC 37 ms
52,524 KB
testcase_17 WA -
testcase_18 AC 39 ms
52,072 KB
testcase_19 WA -
testcase_20 AC 37 ms
53,256 KB
testcase_21 AC 36 ms
52,496 KB
testcase_22 AC 36 ms
53,708 KB
testcase_23 AC 37 ms
53,684 KB
testcase_24 AC 37 ms
53,372 KB
testcase_25 AC 37 ms
52,072 KB
testcase_26 AC 37 ms
52,304 KB
testcase_27 AC 36 ms
53,016 KB
testcase_28 AC 47 ms
61,836 KB
testcase_29 AC 47 ms
63,372 KB
testcase_30 WA -
testcase_31 AC 36 ms
53,688 KB
testcase_32 AC 35 ms
52,076 KB
testcase_33 AC 37 ms
52,484 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:
            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