結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー fV9TwBhUoa9S3eVfV9TwBhUoa9S3eV
提出日時 2019-10-07 15:03:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 329 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-10-13 06:30:52
合計ジャッジ時間 1,262 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3 WA * 1
other AC * 9 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

# No.446 ゆきこーだーの雨と雪 (1)
a = input()
b = input()

isCorrect = 'OK'

for s in [a, b]:
    if len(s) > 1 and s[0] == '0':
        isCorrect = 'NG'
        break
    elif s.upper() != s.lower():
        isCorrect = 'NG'
        break
    elif s >= '12345':
        isCorrect = 'NG'
        break

print(isCorrect)
0