結果
| 問題 |
No.2460 #強調#
|
| コンテスト | |
| ユーザー |
naut3
|
| 提出日時 | 2023-09-09 20:13:24 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 30 ms / 2,000 ms |
| コード長 | 232 bytes |
| コンパイル時間 | 94 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,496 KB |
| 最終ジャッジ日時 | 2024-06-27 12:47:15 |
| 合計ジャッジ時間 | 1,224 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 |
ソースコード
S = list(input())
ans = []
isok = False
for i in range(len(S)):
if isok and S[i] == "#":
isok = False
elif not isok and S[i] == "#":
isok = True
elif isok:
ans.append(S[i])
print(*ans, sep="")
naut3