結果
| 問題 | No.653 E869120 and Lucky Numbers |
| コンテスト | |
| ユーザー |
KoshStorm
|
| 提出日時 | 2018-04-29 10:13:22 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 165 bytes |
| 記録 | |
| コンパイル時間 | 528 ms |
| コンパイル使用メモリ | 20,956 KB |
| 実行使用メモリ | 20,700 KB |
| 最終ジャッジ日時 | 2026-03-16 05:01:51 |
| 合計ジャッジ時間 | 5,506 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 24 WA * 3 RE * 4 |
ソースコード
p = input()
num = int(p)
while True:
if str(num)[-1] in ['2','3','4']:
num //= 10
num -= 1
else:
break
if num in [0,7,6]:
print("Yes")
else:
print("No")
KoshStorm