結果
問題 | No.446 ゆきこーだーの雨と雪 (1) |
ユーザー |
|
提出日時 | 2017-04-01 20:51:18 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 322 bytes |
コンパイル時間 | 80 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-07 19:02:16 |
合計ジャッジ時間 | 1,166 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 9 WA * 4 |
ソースコード
import sys a=input() b=input() if a.isnumeric()==False or b.isnumeric()==False: print("NG") sys.exit() if a!="0": if a[0]=="0": print("NG") sys.exit() if b!="0": if b[0]=="0": print("NG") sys.exit() if int(a)>0 or int(b)>12345: print("NG") sys.exit() print("OK")