結果

問題 No.653 E869120 and Lucky Numbers
ユーザー KoshStorm
提出日時 2018-04-29 10:13:22
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 165 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-27 23:29:52
合計ジャッジ時間 2,136 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24 WA * 3 RE * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

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")
0