結果

問題 No.676 C0nvertPr0b1em
ユーザー ichibanshiboriichibanshibori
提出日時 2018-04-29 00:54:08
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 10,626 ms
コンパイル使用メモリ 427,584 KB
実行使用メモリ 51,240 KB
最終ジャッジ日時 2024-11-20 15:51:26
合計ジャッジ時間 19,196 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 293 ms
50,864 KB
testcase_01 AC 278 ms
50,764 KB
testcase_02 AC 282 ms
51,092 KB
testcase_03 AC 279 ms
51,240 KB
testcase_04 AC 285 ms
51,160 KB
testcase_05 AC 288 ms
51,068 KB
testcase_06 AC 292 ms
50,980 KB
testcase_07 AC 289 ms
51,092 KB
testcase_08 AC 283 ms
50,860 KB
testcase_09 AC 284 ms
50,984 KB
testcase_10 AC 288 ms
51,064 KB
testcase_11 AC 296 ms
50,784 KB
testcase_12 AC 293 ms
50,888 KB
testcase_13 AC 281 ms
50,968 KB
testcase_14 AC 279 ms
51,180 KB
testcase_15 AC 291 ms
51,124 KB
testcase_16 AC 300 ms
50,900 KB
testcase_17 AC 294 ms
50,848 KB
testcase_18 AC 284 ms
51,056 KB
testcase_19 AC 283 ms
50,932 KB
testcase_20 AC 297 ms
50,788 KB
testcase_21 AC 297 ms
50,796 KB
testcase_22 AC 288 ms
51,060 KB
testcase_23 AC 287 ms
50,904 KB
testcase_24 AC 284 ms
51,124 KB
testcase_25 AC 276 ms
51,028 KB
testcase_26 AC 278 ms
50,732 KB
testcase_27 AC 278 ms
50,836 KB
testcase_28 AC 284 ms
50,820 KB
testcase_29 AC 285 ms
50,732 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args : Array<String>) {
         ^

ソースコード

diff #

fun main(args : Array<String>) {
	val S = readLine() ?: ""
	
	val R = S
	    .replace('l', '1', false)
		.replace('I', '1', false)
		.replace('O', '0', true)
	
	println(R)
}
0