結果
問題 | No.1609 String Division Machine |
ユーザー | 👑 SPD_9X2 |
提出日時 | 2021-05-16 16:18:33 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 324 bytes |
コンパイル時間 | 202 ms |
コンパイル使用メモリ | 82,320 KB |
実行使用メモリ | 73,832 KB |
最終ジャッジ日時 | 2024-07-06 07:54:15 |
合計ジャッジ時間 | 2,722 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 31 ms
52,068 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 32 ms
52,968 KB |
testcase_06 | AC | 33 ms
52,220 KB |
testcase_07 | AC | 34 ms
52,748 KB |
testcase_08 | WA | - |
testcase_09 | AC | 32 ms
52,152 KB |
testcase_10 | AC | 31 ms
53,076 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 33 ms
53,008 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 31 ms
52,492 KB |
testcase_23 | AC | 32 ms
53,180 KB |
testcase_24 | AC | 32 ms
52,440 KB |
testcase_25 | WA | - |
testcase_26 | AC | 32 ms
52,832 KB |
testcase_27 | WA | - |
testcase_28 | AC | 32 ms
52,396 KB |
testcase_29 | AC | 32 ms
52,212 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 45 ms
72,756 KB |
testcase_35 | AC | 45 ms
73,428 KB |
testcase_36 | WA | - |
testcase_37 | AC | 47 ms
73,688 KB |
testcase_38 | AC | 35 ms
59,300 KB |
testcase_39 | WA | - |
testcase_40 | AC | 44 ms
73,044 KB |
testcase_41 | WA | - |
ソースコード
""" 先頭だけ続く文字に置き換え、それ以外は 全部aに置き換える誤解法 """ S = input() ANS = [] wait = 0 for i in S: if i == "?" and len(ANS) > 0: ANS.append("a") elif i == "?": wait += 1 else: ANS.append(i*(wait+1)) wait = 0 print ("".join(ANS))