結果
問題 | No.2234 palindromer |
ユーザー | Yuta |
提出日時 | 2023-03-14 14:14:34 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,895 bytes |
コンパイル時間 | 407 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-09-18 08:02:52 |
合計ジャッジ時間 | 1,314 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
ソースコード
全に回文でない時に回文を作成する関数 def palindrome(sentence): if sentence[-1] == sentence[-2]: sentence2 = sentence[::-1] sentence3 = sentence2[2:] new_sentence = sentence + sentence3 print(new_sentence) else: sentence2 = sentence[::-1] sentence3 = sentence2[1:] new_sentence = sentence + sentence3 print(new_sentence) #与えられた文字列がもうすでに完全に回文か調べる関数 def check_palindrome(sentence): for i in range(len(sentence)): if sentence[i] == sentence[-(i + 1)]: pass else: break else: print(sentence) #文字列が既に一部回文になりかかっているかどうか調べる関数 def check_palindrome2(sentence): for i in range(len(sentence) -2): if sentence[i] == sentence[i + 2] and sentence[i] == sentence[-(i + 1)]: break elif sentence[i] == sentence[i + 2]: if sentence[i - 1] == sentence[i + 3]: check_sentence = sentence[:i + 2] make_palindrome = check_sentence[::-1] make_palindrome2 = make_palindrome[1:] print(check_sentence + make_palindrome2) break else: pass elif sentence[i] == sentence[i+1]: if sentence[i-1] == sentence[i + 2]: check_sentence = sentence[:i + 2] make_palindrome = check_sentence[::-1] make_palindrome2 = make_palindrome[2:] print(check_sentence + make_palindrome2) break else: break else: palindrome(sentence) sentence = input("") if len(sentence) >= 2: check_palindrome2(sentence) check_palindrome(sentence) else: print(sentence)