結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー rlangevinrlangevin
提出日時 2024-07-13 16:48:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 343 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 53,404 KB
最終ジャッジ日時 2024-07-13 16:48:17
合計ジャッジ時間 2,453 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,964 KB
testcase_01 AC 38 ms
52,128 KB
testcase_02 AC 38 ms
53,224 KB
testcase_03 AC 38 ms
52,864 KB
testcase_04 AC 39 ms
52,288 KB
testcase_05 AC 38 ms
52,264 KB
testcase_06 WA -
testcase_07 AC 38 ms
52,660 KB
testcase_08 WA -
testcase_09 AC 38 ms
52,560 KB
testcase_10 AC 38 ms
52,460 KB
testcase_11 AC 38 ms
52,656 KB
testcase_12 AC 57 ms
52,248 KB
testcase_13 AC 38 ms
53,404 KB
testcase_14 AC 38 ms
53,008 KB
testcase_15 AC 38 ms
52,604 KB
testcase_16 AC 38 ms
52,552 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")
0