結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー rlangevinrlangevin
提出日時 2024-07-13 16:51:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 396 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 53,064 KB
最終ジャッジ日時 2024-07-13 16:51:21
合計ジャッジ時間 2,534 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,112 KB
testcase_01 AC 36 ms
52,848 KB
testcase_02 AC 36 ms
52,620 KB
testcase_03 AC 37 ms
52,420 KB
testcase_04 AC 36 ms
51,900 KB
testcase_05 AC 36 ms
51,944 KB
testcase_06 AC 36 ms
51,948 KB
testcase_07 AC 37 ms
52,340 KB
testcase_08 AC 40 ms
52,372 KB
testcase_09 AC 37 ms
51,836 KB
testcase_10 AC 36 ms
53,064 KB
testcase_11 AC 36 ms
51,900 KB
testcase_12 AC 37 ms
51,812 KB
testcase_13 AC 36 ms
52,964 KB
testcase_14 AC 36 ms
52,060 KB
testcase_15 AC 37 ms
51,896 KB
testcase_16 AC 36 ms
52,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(s):
    if len(s) >= 2 and s[0] == "0":
        print("NG")
        exit()
def g(s):
    for c in s:
        if 0 <= ord(c) - ord("a") <= 25:
            print("NG")
            exit()
        if 0 <= ord(c) - ord("A") <= 25:
            print("NG")
            exit()
            
A = input()
B = input()
f(A)
f(B)
g(A)
g(B)
print("OK") if int(A) <= 12345 and int(B) <= 12345 else print("NG")
0