結果
問題 |
No.69 文字を自由に並び替え
|
ユーザー |
|
提出日時 | 2018-07-14 18:55:27 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 245 bytes |
コンパイル時間 | 333 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-10-11 00:49:50 |
合計ジャッジ時間 | 1,252 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 15 |
ソースコード
A = input() B = input() def check(strA, strB): for i in range(strA): frag = False for j in range(strB): if i == j: frag = True if frag == False: return False if check(A, B): print(True) else: print(False)