結果

問題 No.2460 #強調#
ユーザー Vishant SandilyaVishant Sandilya
提出日時 2023-09-29 20:05:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 3,822 ms
コンパイル使用メモリ 75,180 KB
実行使用メモリ 50,248 KB
最終ジャッジ日時 2024-07-22 14:10:15
合計ジャッジ時間 5,699 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
49,980 KB
testcase_01 AC 49 ms
50,236 KB
testcase_02 AC 49 ms
50,224 KB
testcase_03 AC 51 ms
50,228 KB
testcase_04 AC 49 ms
50,064 KB
testcase_05 AC 49 ms
50,232 KB
testcase_06 AC 50 ms
50,152 KB
testcase_07 AC 50 ms
50,080 KB
testcase_08 AC 51 ms
50,232 KB
testcase_09 AC 47 ms
50,248 KB
testcase_10 AC 50 ms
50,224 KB
testcase_11 AC 48 ms
50,188 KB
testcase_12 AC 51 ms
50,180 KB
testcase_13 AC 49 ms
49,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class yc1 {
    public static void main(String[] args) throws IOException {
        BufferedReader buf = new BufferedReader(new InputStreamReader(System.in));
        String s = buf.readLine();
        int i =0;
        while(s.charAt(i)!='#')i++;
        StringBuilder ans = new StringBuilder();
        for(i++;s.charAt(i)!='#';i++)ans.append(s.charAt(i));
        System.out.println(ans);
    }
}
0