結果

問題 No.1469 programing
ユーザー tnodinotnodino
提出日時 2022-06-03 19:21:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 279 ms / 3,000 ms
コード長 90 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 11,672 KB
実行使用メモリ 19,716 KB
最終ジャッジ日時 2023-10-21 01:33:19
合計ジャッジ時間 1,961 ms
ジャッジサーバーID
(参考情報)
judge11 / judge9
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
9,928 KB
testcase_01 AC 29 ms
9,928 KB
testcase_02 AC 28 ms
9,928 KB
testcase_03 AC 30 ms
9,928 KB
testcase_04 AC 30 ms
9,928 KB
testcase_05 AC 30 ms
9,928 KB
testcase_06 AC 29 ms
9,928 KB
testcase_07 AC 30 ms
9,928 KB
testcase_08 AC 35 ms
10,084 KB
testcase_09 AC 38 ms
10,184 KB
testcase_10 AC 39 ms
10,284 KB
testcase_11 AC 36 ms
10,352 KB
testcase_12 AC 33 ms
10,232 KB
testcase_13 AC 28 ms
9,928 KB
testcase_14 AC 37 ms
10,580 KB
testcase_15 AC 44 ms
10,580 KB
testcase_16 AC 55 ms
10,888 KB
testcase_17 AC 279 ms
19,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
for i in range(26):
    alp = chr(i+97)
    S = S.replace(alp*2, alp)
print(S)
0