結果
問題 |
No.653 E869120 and Lucky Numbers
|
ユーザー |
|
提出日時 | 2018-03-19 17:15:16 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 862 bytes |
コンパイル時間 | 383 ms |
コンパイル使用メモリ | 82,184 KB |
実行使用メモリ | 62,084 KB |
最終ジャッジ日時 | 2025-01-01 18:10:31 |
合計ジャッジ時間 | 2,488 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 26 WA * 5 |
ソースコード
#!/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')