結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー nanae
提出日時 2016-12-31 15:45:35
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 391 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-12-16 04:34:42
合計ジャッジ時間 1,425 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Here your code !
A = input()
B = input()

if not A.isnumeric() or not B.isnumeric(): # 数字以外を含むか
    print("NG")
elif (A != "0" and A[0] == "0") or (B != "0" and B[0] == "0"): # 0でないのに0から始まるか
    print("NG")
elif (0 <= int(A) <= 12345) and (0 <= int(B) <= 12345): # 0 <= A,B <= 12345を満たすか
    print("OK")
else:
    print("NG")
0