結果
| 問題 | No.2234 palindromer |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-03-11 13:54:49 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 238 bytes |
| 記録 | |
| コンパイル時間 | 328 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 20,480 KB |
| 最終ジャッジ日時 | 2026-04-06 14:20:29 |
| 合計ジャッジ時間 | 4,656 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 13 |
ソースコード
empty=[]
def make_text(sentence):
word = sentence[-2]
empty.append(word)
for i in range(len(sentence)):
new_word = -(sentence[len(sentence) - 1])
empty.append(new_word)
sentence = input()
make_text()
print(empty)