結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー matriematrie
提出日時 2020-12-01 21:18:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 165 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 10,616 KB
実行使用メモリ 9,144 KB
最終ジャッジ日時 2023-10-11 03:43:35
合計ジャッジ時間 1,612 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
9,088 KB
testcase_01 AC 26 ms
8,884 KB
testcase_02 AC 26 ms
8,948 KB
testcase_03 WA -
testcase_04 AC 26 ms
8,984 KB
testcase_05 AC 26 ms
9,064 KB
testcase_06 AC 26 ms
9,056 KB
testcase_07 AC 25 ms
8,896 KB
testcase_08 AC 26 ms
9,088 KB
testcase_09 AC 26 ms
9,084 KB
testcase_10 AC 26 ms
9,092 KB
testcase_11 AC 25 ms
8,936 KB
testcase_12 WA -
testcase_13 AC 25 ms
9,016 KB
testcase_14 AC 26 ms
9,040 KB
testcase_15 AC 26 ms
9,144 KB
testcase_16 AC 26 ms
9,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re
a,b = input(),input()
s = "NG"
if re.fullmatch(r'[1-9][0-9]*',a) and re.fullmatch(r'[1-9][0-9]*',b):
	if int(a)<12346 and int(b)<12346:
		s = "OK"
print(s)
0