結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー Luoto-greenLuoto-green
提出日時 2017-07-30 18:53:20
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-10 22:38:37
合計ジャッジ時間 1,361 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(a,b):
    try:
        assert a==str(int(a))and 0<=int(a)<12346
        assert b==str(int(b))and 0<=int(b)<12346
        return "OK"
    except:
        return "NG"
print(solve(input(),input()))
0