結果
問題 | No.446 ゆきこーだーの雨と雪 (1) |
ユーザー |
![]() |
提出日時 | 2020-06-04 12:20:22 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 41 ms / 2,000 ms |
コード長 | 330 bytes |
コンパイル時間 | 311 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 59,776 KB |
最終ジャッジ日時 | 2024-11-28 14:39:48 |
合計ジャッジ時間 | 2,005 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 13 |
ソースコード
mod = 1000000007eps = 10**-9def main():import sysinput = sys.stdin.readlineA = input().rstrip('\n')B = input().rstrip('\n')L = set()for i in range(12346):L.add(str(i))if A in L and B in L:print("OK")else:print("NG")if __name__ == '__main__':main()