結果

問題 No.1609 String Division Machine
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-05-16 16:16:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 176 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 73,504 KB
最終ジャッジ日時 2024-07-06 07:53:57
合計ジャッジ時間 2,668 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 32 ms
52,480 KB
testcase_02 WA -
testcase_03 AC 30 ms
52,320 KB
testcase_04 WA -
testcase_05 AC 29 ms
53,112 KB
testcase_06 WA -
testcase_07 AC 31 ms
52,396 KB
testcase_08 WA -
testcase_09 AC 30 ms
52,820 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 30 ms
51,924 KB
testcase_13 WA -
testcase_14 AC 29 ms
52,684 KB
testcase_15 AC 29 ms
52,504 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 29 ms
52,888 KB
testcase_21 WA -
testcase_22 AC 29 ms
52,048 KB
testcase_23 AC 29 ms
53,284 KB
testcase_24 AC 29 ms
52,000 KB
testcase_25 AC 30 ms
53,712 KB
testcase_26 AC 29 ms
52,688 KB
testcase_27 WA -
testcase_28 AC 29 ms
52,328 KB
testcase_29 AC 31 ms
52,364 KB
testcase_30 AC 29 ms
54,024 KB
testcase_31 AC 29 ms
52,864 KB
testcase_32 AC 29 ms
52,604 KB
testcase_33 AC 42 ms
73,504 KB
testcase_34 AC 43 ms
72,860 KB
testcase_35 AC 44 ms
72,512 KB
testcase_36 AC 44 ms
72,972 KB
testcase_37 AC 42 ms
73,272 KB
testcase_38 WA -
testcase_39 AC 41 ms
66,696 KB
testcase_40 AC 41 ms
71,908 KB
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

全部aに置き換える誤解法

"""

S = input()

ANS = []

for i in S:
    if i == "?":
        ANS.append("a")
    else:
        ANS.append(i)

print ("".join(ANS))
0