結果

問題 No.1609 String Division Machine
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-05-16 16:16:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 176 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 87,308 KB
実行使用メモリ 82,324 KB
最終ジャッジ日時 2023-09-20 12:34:14
合計ジャッジ時間 5,144 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 79 ms
71,240 KB
testcase_02 WA -
testcase_03 AC 80 ms
71,624 KB
testcase_04 WA -
testcase_05 AC 78 ms
71,508 KB
testcase_06 WA -
testcase_07 AC 77 ms
71,280 KB
testcase_08 WA -
testcase_09 AC 74 ms
71,280 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 74 ms
71,260 KB
testcase_13 WA -
testcase_14 AC 72 ms
71,420 KB
testcase_15 AC 73 ms
71,420 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 72 ms
71,256 KB
testcase_21 WA -
testcase_22 AC 72 ms
71,556 KB
testcase_23 AC 72 ms
71,096 KB
testcase_24 AC 74 ms
71,564 KB
testcase_25 AC 74 ms
71,128 KB
testcase_26 AC 72 ms
71,364 KB
testcase_27 WA -
testcase_28 AC 74 ms
71,328 KB
testcase_29 AC 73 ms
71,336 KB
testcase_30 AC 74 ms
71,264 KB
testcase_31 AC 73 ms
71,392 KB
testcase_32 AC 74 ms
71,292 KB
testcase_33 AC 86 ms
82,188 KB
testcase_34 AC 85 ms
82,020 KB
testcase_35 AC 86 ms
82,028 KB
testcase_36 AC 86 ms
81,988 KB
testcase_37 AC 86 ms
81,980 KB
testcase_38 WA -
testcase_39 AC 83 ms
81,916 KB
testcase_40 AC 84 ms
81,932 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