結果

問題 No.2460 #強調#
ユーザー kusagame12kusagame12
提出日時 2023-11-09 20:51:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 1,961 ms
コンパイル使用メモリ 73,784 KB
実行使用メモリ 37,052 KB
最終ジャッジ日時 2024-09-26 00:35:32
合計ジャッジ時間 3,210 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,744 KB
testcase_01 AC 47 ms
36,784 KB
testcase_02 AC 47 ms
37,008 KB
testcase_03 AC 47 ms
36,964 KB
testcase_04 AC 47 ms
36,784 KB
testcase_05 AC 45 ms
36,996 KB
testcase_06 AC 45 ms
37,012 KB
testcase_07 AC 46 ms
37,052 KB
testcase_08 AC 47 ms
36,476 KB
testcase_09 AC 47 ms
36,952 KB
testcase_10 AC 47 ms
36,504 KB
testcase_11 AC 47 ms
36,892 KB
testcase_12 AC 47 ms
36,684 KB
testcase_13 AC 47 ms
36,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String str = br.readLine();
        System.out.println(str.substring(str.indexOf('#')+1, str.lastIndexOf('#')));

    }

}
0