結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
37,008 KB
testcase_01 AC 49 ms
36,776 KB
testcase_02 AC 49 ms
36,832 KB
testcase_03 AC 49 ms
36,732 KB
testcase_04 AC 48 ms
36,932 KB
testcase_05 AC 47 ms
36,888 KB
testcase_06 AC 47 ms
36,940 KB
testcase_07 AC 48 ms
36,784 KB
testcase_08 AC 47 ms
37,032 KB
testcase_09 AC 50 ms
36,872 KB
testcase_10 AC 49 ms
36,688 KB
testcase_11 AC 50 ms
36,740 KB
testcase_12 AC 50 ms
36,504 KB
testcase_13 AC 50 ms
36,368 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));
        char[] str = br.readLine().toCharArray();
        
        StringBuilder sb = new StringBuilder(str.length);
        boolean flag = false;
        for (int i = 0 , len = str.length ; i < len ; i++){
            
            char c = str[i];
            
            if(c == '#'){
                flag = !flag;
            }else if(flag){
                sb.append(c);
            }
            
        } 
        
        System.out.println(sb);

    }

}
0