結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 43 ms
58,368 KB
testcase_02 WA -
testcase_03 AC 44 ms
58,496 KB
testcase_04 AC 42 ms
58,624 KB
testcase_05 AC 39 ms
58,624 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 38 ms
58,752 KB
testcase_09 WA -
testcase_10 AC 34 ms
51,968 KB
testcase_11 AC 34 ms
52,224 KB
testcase_12 AC 34 ms
52,480 KB
testcase_13 WA -
testcase_14 AC 34 ms
52,608 KB
testcase_15 AC 34 ms
52,480 KB
testcase_16 AC 37 ms
51,968 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 35 ms
52,224 KB
testcase_21 AC 34 ms
52,224 KB
testcase_22 WA -
testcase_23 AC 38 ms
52,352 KB
testcase_24 AC 34 ms
52,096 KB
testcase_25 AC 33 ms
52,128 KB
testcase_26 AC 34 ms
51,840 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 38 ms
58,880 KB
testcase_31 AC 35 ms
51,712 KB
testcase_32 AC 35 ms
52,096 KB
testcase_33 AC 34 ms
52,096 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 int(p) == 12 or 13 or 14:
        print('Yes')
    else:
        print('No')
    quit()

if plist[0] != 2 and 3 and 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 plist[-1] == 6 or 7 or 8:
    sw = 0 if plist[-1] == 6 else 1
    for ps in plist[1:-1]:
        if sw != 0 and ps == 3 or 4 or 5:
            sw = 2
            continue
        elif sw != 2 and ps == 7 or 8:
            sw = 1
            continue
        elif sw == 0 and ps == 6:
            continue
        else:
            print('No')
            quit()
else:
    print('No')
    quit()

print('Yes')
0