結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー ytftytft
提出日時 2021-03-30 13:01:50
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 226 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 67,640 KB
最終ジャッジ日時 2024-05-07 16:10:29
合計ジャッジ時間 1,953 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 35 ms
52,324 KB
testcase_02 RE -
testcase_03 AC 35 ms
52,340 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 36 ms
52,540 KB
testcase_07 RE -
testcase_08 AC 35 ms
52,272 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 36 ms
52,080 KB
testcase_13 AC 35 ms
53,076 KB
testcase_14 AC 35 ms
52,560 KB
testcase_15 AC 36 ms
52,864 KB
testcase_16 AC 37 ms
52,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


def isOK(s):
    if s=="0" or (s.isdecimal() and s[0]!='0'):
        return 0<=int(s)<=12345
    else:
        return false
   
    
    
A=input()
B=input()
if isOK(A) and isOK(B):
    print('OK')
    
else:
    print('NG')
0