結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 44 ms
58,240 KB
testcase_02 AC 41 ms
58,112 KB
testcase_03 AC 42 ms
58,240 KB
testcase_04 AC 40 ms
59,008 KB
testcase_05 AC 41 ms
58,624 KB
testcase_06 WA -
testcase_07 AC 35 ms
52,224 KB
testcase_08 AC 38 ms
58,880 KB
testcase_09 AC 35 ms
52,096 KB
testcase_10 AC 34 ms
52,096 KB
testcase_11 AC 34 ms
52,224 KB
testcase_12 AC 37 ms
52,096 KB
testcase_13 AC 34 ms
51,968 KB
testcase_14 AC 35 ms
52,224 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 35 ms
52,224 KB
testcase_18 AC 36 ms
51,840 KB
testcase_19 AC 35 ms
51,968 KB
testcase_20 AC 35 ms
52,464 KB
testcase_21 AC 34 ms
52,224 KB
testcase_22 AC 35 ms
51,968 KB
testcase_23 AC 35 ms
52,224 KB
testcase_24 AC 34 ms
51,712 KB
testcase_25 AC 34 ms
52,480 KB
testcase_26 AC 34 ms
52,480 KB
testcase_27 AC 35 ms
51,968 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 42 ms
59,904 KB
testcase_31 AC 35 ms
52,480 KB
testcase_32 AC 35 ms
52,096 KB
testcase_33 AC 34 ms
52,352 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 1 >= plist[0] or plist[0] >= 5:
    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