結果
問題 |
No.446 ゆきこーだーの雨と雪 (1)
|
ユーザー |
|
提出日時 | 2020-08-28 14:32:07 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 278 bytes |
コンパイル時間 | 356 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 52,096 KB |
最終ジャッジ日時 | 2024-11-09 01:15:28 |
合計ジャッジ時間 | 1,699 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 WA * 1 |
other | AC * 8 WA * 5 |
ソースコード
A = input() B = input() if (len(A) == 1 or A[0] == '0') and (len(B) == 1 or B[0] == '0'): try: A = int(A) B = int(B) print('OK') except: print('NG') else: print('NG')