結果

問題 No.2460 #強調#
ユーザー 310icecrystal
提出日時 2023-09-10 12:10:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 131 bytes
コンパイル時間 840 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 53,024 KB
最終ジャッジ日時 2024-06-28 03:30:00
合計ジャッジ時間 1,810 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
l = len(S)

sharps = []
for i in range(l):
    if S[i] == "#":
        sharps.append(i)
print(S[sharps[0]+1:sharps[1]])
0