結果
| 問題 | No.2460 #強調# |
| コンテスト | |
| ユーザー |
310icecrystal
|
| 提出日時 | 2023-09-10 12:10:49 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 25 ms / 2,000 ms |
| コード長 | 131 bytes |
| 記録 | |
| コンパイル時間 | 357 ms |
| コンパイル使用メモリ | 85,408 KB |
| 実行使用メモリ | 53,628 KB |
| 最終ジャッジ日時 | 2026-03-16 13:55:51 |
| 合計ジャッジ時間 | 3,024 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 |
ソースコード
S = input()
l = len(S)
sharps = []
for i in range(l):
if S[i] == "#":
sharps.append(i)
print(S[sharps[0]+1:sharps[1]])
310icecrystal