結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー ytftytft
提出日時 2021-03-30 12:58:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 126 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 53,684 KB
最終ジャッジ日時 2024-05-07 16:07:42
合計ジャッジ時間 1,381 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,328 KB
testcase_01 AC 32 ms
52,360 KB
testcase_02 AC 32 ms
52,364 KB
testcase_03 WA -
testcase_04 AC 31 ms
52,152 KB
testcase_05 AC 32 ms
52,240 KB
testcase_06 WA -
testcase_07 AC 32 ms
52,696 KB
testcase_08 WA -
testcase_09 AC 31 ms
52,724 KB
testcase_10 AC 32 ms
51,840 KB
testcase_11 AC 32 ms
53,684 KB
testcase_12 WA -
testcase_13 AC 33 ms
52,608 KB
testcase_14 AC 32 ms
52,692 KB
testcase_15 AC 31 ms
51,836 KB
testcase_16 AC 33 ms
51,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A=input()
B=input()
if A.isdecimal() and A[0]!='0' and B.isdecimal() and B[0]!='0':
    print('OK')
    
else:
    print('NG')
0