結果

問題 No.653 E869120 and Lucky Numbers
ユーザー KoshStorm
提出日時 2018-04-29 10:18:01
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 238 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-27 23:29:55
合計ジャッジ時間 2,164 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26 WA * 1 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 == 0:
	print("Yes")
	exit(0)
s = str(num)
for c in s:
	if not c in ['6','7']:
		print("No")
		exit(0)

print("Yes")


0