結果

問題 No.559 swapAB列
ユーザー R_FR_F
提出日時 2017-11-28 17:44:54
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 641 bytes
コンパイル時間 11,736 ms
コンパイル使用メモリ 437,376 KB
実行使用メモリ 57,868 KB
最終ジャッジ日時 2024-04-30 16:33:15
合計ジャッジ時間 16,058 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
57,656 KB
testcase_01 AC 341 ms
57,788 KB
testcase_02 AC 339 ms
57,868 KB
testcase_03 AC 333 ms
57,756 KB
testcase_04 AC 334 ms
57,656 KB
testcase_05 AC 334 ms
57,820 KB
testcase_06 AC 332 ms
57,672 KB
testcase_07 AC 341 ms
57,668 KB
testcase_08 AC 339 ms
57,776 KB
testcase_09 AC 340 ms
57,736 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:24:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

import java.util.Scanner

fun inputListSplit(): MutableList<String>{
	var input = (Scanner(System. `in`).next()).split(Regex(""))
	var list: MutableList<String> = mutableListOf()
	for(i in 0..input.count() - 2) list.add(input[i])
	return list
}

fun swap(list: MutableList<String>): Int{
	var count: Int = 0
	var i: Int = 0
	while(i < list.count() - 1){
		if(list[i] == "B" && list[i + 1] == "A"){
			list[i] = list[i + 1].also {list[i + 1] = list[i]}
			count++
			if(i != 0 && list[i - 1] == "B") i -= 2
		}
		i++
	}
	return count
}

fun main(args: Array<String>){
	var list: MutableList<String> = inputListSplit()
	println( swap(list) )
}
0