結果

問題 No.676 C0nvertPr0b1em
ユーザー ichibanshiboriichibanshibori
提出日時 2018-04-29 00:54:08
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 8,473 ms
コンパイル使用メモリ 427,724 KB
実行使用メモリ 56,912 KB
最終ジャッジ日時 2024-04-30 18:25:39
合計ジャッジ時間 17,869 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 266 ms
56,912 KB
testcase_01 AC 267 ms
56,668 KB
testcase_02 AC 269 ms
56,688 KB
testcase_03 AC 271 ms
56,796 KB
testcase_04 AC 275 ms
56,840 KB
testcase_05 AC 269 ms
56,692 KB
testcase_06 AC 265 ms
56,656 KB
testcase_07 AC 269 ms
56,736 KB
testcase_08 AC 271 ms
56,804 KB
testcase_09 AC 271 ms
56,664 KB
testcase_10 AC 270 ms
56,824 KB
testcase_11 AC 276 ms
56,820 KB
testcase_12 AC 271 ms
56,688 KB
testcase_13 AC 265 ms
56,736 KB
testcase_14 AC 261 ms
56,724 KB
testcase_15 AC 270 ms
56,836 KB
testcase_16 AC 268 ms
56,836 KB
testcase_17 AC 271 ms
56,672 KB
testcase_18 AC 266 ms
56,680 KB
testcase_19 AC 265 ms
56,812 KB
testcase_20 AC 268 ms
56,752 KB
testcase_21 AC 268 ms
56,704 KB
testcase_22 AC 272 ms
56,884 KB
testcase_23 AC 258 ms
56,856 KB
testcase_24 AC 265 ms
56,880 KB
testcase_25 AC 260 ms
56,732 KB
testcase_26 AC 264 ms
56,784 KB
testcase_27 AC 265 ms
56,720 KB
testcase_28 AC 266 ms
56,820 KB
testcase_29 AC 284 ms
56,776 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