結果
問題 | No.52 よくある文字列の問題 |
ユーザー | bellangeldindon |
提出日時 | 2019-05-08 11:13:05 |
言語 | Python2 (2.7.18) |
結果 |
RE
|
実行時間 | - |
コード長 | 364 bytes |
コンパイル時間 | 54 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 6,272 KB |
最終ジャッジ日時 | 2024-07-02 00:26:20 |
合計ジャッジ時間 | 781 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
ソースコード
S = raw_input() slist = [] for i in range(0, N): slist.append(S[i]) memo = [slist] stack = [slist] while stack != []: s = stack.pop(-1) a = [] b = [s[-1]] for i in range(0, len(s)-1): a.append(s[i+1]) b.append(s[i]) a.append(s[0]) if a not in memo: memo.append(a) stack.append(a) if b not in memo: memo.append(b) stack.append(b) print len(memo)