結果

問題 No.2460 #強調#
ユーザー 310icecrystal310icecrystal
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,024 KB
testcase_01 AC 38 ms
52,940 KB
testcase_02 AC 37 ms
52,384 KB
testcase_03 AC 38 ms
52,100 KB
testcase_04 AC 37 ms
51,940 KB
testcase_05 AC 38 ms
52,024 KB
testcase_06 AC 37 ms
52,828 KB
testcase_07 AC 37 ms
52,764 KB
testcase_08 AC 37 ms
52,036 KB
testcase_09 AC 38 ms
52,276 KB
testcase_10 AC 38 ms
51,560 KB
testcase_11 AC 38 ms
52,828 KB
testcase_12 AC 39 ms
52,304 KB
testcase_13 AC 38 ms
51,980 KB
権限があれば一括ダウンロードができます

ソースコード

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