結果

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

ソースコード

diff #

import sys
str = sys.argv[1]
if len(str) == 1:
    print("No")
    exit(0)

a = int(str[0] + str[1])
if not (a >= 13 and a <= 15):
    print("No")
    exit(0)

for num in range(len(str)-2) :
    a = int("1" + str[num+1])
    if not (a >= 13 and a <= 15):
        print("No")
        exit(0)

a = int("1" + str[-1])
if not (a >= 12 and a <= 14):
    print("No")
else:
    print("Yes")
0