結果

問題 No.676 C0nvertPr0b1em
ユーザー GrenacheGrenache
提出日時 2018-04-27 22:22:03
言語 Java
(openjdk 23)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 818 bytes
コンパイル時間 4,414 ms
コンパイル使用メモリ 75,640 KB
実行使用メモリ 41,868 KB
最終ジャッジ日時 2024-06-23 12:29:05
合計ジャッジ時間 8,468 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder676 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		char[] s = sc.next().toCharArray();

		for (int i = 0, size = s.length; i < size; i++) {
			if (s[i] == 'I' || s[i] == 'l') {
				s[i] = '1';
			} else if (s[i] == 'O' || s[i] == 'o') {
				s[i] = '0';
			}
		}

		pr.println(s);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(INPUT == null ? System.in : new ByteArrayInputStream(INPUT.getBytes()));
		pr = new Printer(System.out);

		solve();

//		pr.close();
		pr.flush();
//		sc.close();
	}

	static String INPUT = null;

	private static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0