結果

問題 No.653 E869120 and Lucky Numbers
ユーザー RyutoRyuto
提出日時 2018-03-19 17:13:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 863 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 62,496 KB
最終ジャッジ日時 2024-06-10 09:15:43
合計ジャッジ時間 2,574 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,816 KB
testcase_01 AC 42 ms
59,984 KB
testcase_02 AC 42 ms
60,004 KB
testcase_03 AC 41 ms
58,588 KB
testcase_04 AC 43 ms
60,436 KB
testcase_05 AC 41 ms
59,284 KB
testcase_06 WA -
testcase_07 AC 38 ms
53,892 KB
testcase_08 AC 40 ms
59,532 KB
testcase_09 AC 37 ms
52,320 KB
testcase_10 WA -
testcase_11 AC 38 ms
52,212 KB
testcase_12 AC 39 ms
52,256 KB
testcase_13 AC 37 ms
52,824 KB
testcase_14 AC 37 ms
53,344 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 38 ms
52,756 KB
testcase_18 AC 38 ms
52,492 KB
testcase_19 AC 37 ms
52,404 KB
testcase_20 AC 38 ms
52,144 KB
testcase_21 AC 38 ms
52,288 KB
testcase_22 AC 38 ms
53,048 KB
testcase_23 AC 37 ms
53,012 KB
testcase_24 AC 38 ms
52,024 KB
testcase_25 AC 38 ms
51,940 KB
testcase_26 AC 38 ms
53,144 KB
testcase_27 AC 38 ms
52,288 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 43 ms
60,756 KB
testcase_31 AC 37 ms
53,000 KB
testcase_32 AC 38 ms
52,416 KB
testcase_33 AC 38 ms
52,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python

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

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

if 2 >= plist[0] and plist[0] >= 4:
    print('No')
    quit()

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

print('Yes')
0