結果

問題 No.653 E869120 and Lucky Numbers
ユーザー RyutoRyuto
提出日時 2018-03-19 17:32:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 915 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 65,232 KB
最終ジャッジ日時 2024-09-13 18:19:03
合計ジャッジ時間 2,633 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,244 KB
testcase_01 AC 42 ms
58,568 KB
testcase_02 AC 44 ms
59,988 KB
testcase_03 AC 46 ms
61,084 KB
testcase_04 AC 43 ms
58,660 KB
testcase_05 AC 43 ms
59,920 KB
testcase_06 AC 46 ms
62,040 KB
testcase_07 AC 40 ms
53,492 KB
testcase_08 AC 43 ms
58,804 KB
testcase_09 AC 39 ms
52,908 KB
testcase_10 AC 39 ms
52,020 KB
testcase_11 AC 38 ms
52,584 KB
testcase_12 AC 39 ms
53,112 KB
testcase_13 AC 37 ms
52,696 KB
testcase_14 AC 38 ms
53,044 KB
testcase_15 AC 39 ms
52,092 KB
testcase_16 AC 38 ms
53,292 KB
testcase_17 AC 38 ms
53,620 KB
testcase_18 AC 38 ms
52,156 KB
testcase_19 AC 38 ms
52,572 KB
testcase_20 AC 38 ms
52,492 KB
testcase_21 AC 38 ms
52,772 KB
testcase_22 AC 38 ms
52,488 KB
testcase_23 AC 37 ms
52,876 KB
testcase_24 AC 37 ms
52,644 KB
testcase_25 AC 38 ms
52,276 KB
testcase_26 AC 38 ms
52,288 KB
testcase_27 AC 38 ms
53,096 KB
testcase_28 AC 50 ms
63,388 KB
testcase_29 AC 51 ms
65,232 KB
testcase_30 AC 51 ms
62,844 KB
testcase_31 AC 38 ms
53,724 KB
testcase_32 AC 38 ms
53,020 KB
testcase_33 AC 38 ms
52,760 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 <= 1 and ps == 7:
            sw = 1
            continue
        elif 0 <= sw <= 1 and ps == 8:
            sw = 2
            continue
        else:
            print('No')
            quit()
else:
    print('No')
    quit()

print('Yes')
0