結果

問題 No.2460 #強調#
ユーザー やでな@競プロやでな@競プロ
提出日時 2023-10-08 23:58:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 53,772 KB
最終ジャッジ日時 2024-07-26 18:15:29
合計ジャッジ時間 1,274 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,276 KB
testcase_01 AC 37 ms
52,752 KB
testcase_02 AC 38 ms
52,576 KB
testcase_03 AC 35 ms
53,084 KB
testcase_04 AC 34 ms
53,772 KB
testcase_05 AC 35 ms
53,572 KB
testcase_06 AC 34 ms
52,068 KB
testcase_07 AC 36 ms
52,120 KB
testcase_08 AC 36 ms
52,028 KB
testcase_09 AC 35 ms
52,452 KB
testcase_10 AC 34 ms
52,408 KB
testcase_11 AC 36 ms
52,600 KB
testcase_12 AC 36 ms
52,740 KB
testcase_13 AC 36 ms
53,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = list(input())
cnt = 0
ans = []
for i in range(len(s)):
    if cnt == 0:
        if s[i] == "#":
            cnt += 1
    elif cnt == 1:
        if s[i] == "#":
            cnt += 1
        else:
            ans.append(s[i])
            
print("".join(ans))
0