結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー tarotaro789
提出日時 2017-04-01 21:01:34
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-07 19:03:44
合計ジャッジ時間 1,024 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

a=input()
b=input()

if a.isnumeric()==False or b.isnumeric()==False:
    print("NG")
elif (a!="0" and a[0]=="0")  or (b!="0" and b[0]=="0") :
        print("NG")
elif int(a)>0 and int(b)>12345:
    print("NG")
else:
    print("OK")
0