結果

問題 No.676 C0nvertPr0b1em
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2019-02-19 17:09:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 74,292 KB
実行使用メモリ 54,476 KB
最終ジャッジ日時 2024-06-23 12:59:36
合計ジャッジ時間 7,018 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,196 KB
testcase_01 AC 127 ms
53,944 KB
testcase_02 AC 129 ms
53,860 KB
testcase_03 AC 127 ms
53,868 KB
testcase_04 AC 126 ms
53,816 KB
testcase_05 AC 128 ms
54,004 KB
testcase_06 AC 130 ms
54,020 KB
testcase_07 AC 128 ms
54,044 KB
testcase_08 AC 127 ms
53,948 KB
testcase_09 AC 124 ms
53,712 KB
testcase_10 AC 128 ms
53,956 KB
testcase_11 AC 129 ms
54,240 KB
testcase_12 AC 129 ms
54,132 KB
testcase_13 AC 129 ms
54,176 KB
testcase_14 AC 127 ms
54,260 KB
testcase_15 AC 130 ms
53,924 KB
testcase_16 AC 130 ms
54,476 KB
testcase_17 AC 127 ms
54,184 KB
testcase_18 AC 128 ms
54,076 KB
testcase_19 AC 127 ms
54,016 KB
testcase_20 AC 128 ms
54,068 KB
testcase_21 AC 130 ms
53,976 KB
testcase_22 AC 128 ms
54,020 KB
testcase_23 AC 123 ms
54,160 KB
testcase_24 AC 126 ms
54,128 KB
testcase_25 AC 126 ms
53,992 KB
testcase_26 AC 126 ms
53,992 KB
testcase_27 AC 125 ms
53,956 KB
testcase_28 AC 124 ms
53,980 KB
testcase_29 AC 126 ms
53,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String s = sc.next();
        String ans = solve(s);
        System.out.println(ans);
    }
    
    static String solve(String s) {
        final char UPPER_I = 'I';
        final char LOWER_L = 'l';
        final char ONE = '1';
        s = s.replace(UPPER_I, ONE);
        s = s.replace(LOWER_L, ONE);
        
        final char UPPER_O = 'O';
        final char LOWER_O = 'o';
        final char ZERO = '0';
        s = s.replace(UPPER_O, ZERO);
        s = s.replace(LOWER_O, ZERO);
        
        return s;
    }
}
0