結果

問題 No.587 七対子
ユーザー R_FR_F
提出日時 2017-11-28 00:34:34
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,130 bytes
コンパイル時間 13,316 ms
コンパイル使用メモリ 443,128 KB
実行使用メモリ 57,940 KB
最終ジャッジ日時 2024-04-30 16:32:25
合計ジャッジ時間 26,927 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 358 ms
57,940 KB
testcase_01 AC 379 ms
57,872 KB
testcase_02 AC 375 ms
57,744 KB
testcase_03 AC 363 ms
57,788 KB
testcase_04 AC 363 ms
57,696 KB
testcase_05 AC 360 ms
57,828 KB
testcase_06 AC 363 ms
57,940 KB
testcase_07 AC 357 ms
57,836 KB
testcase_08 AC 363 ms
57,740 KB
testcase_09 AC 362 ms
57,696 KB
testcase_10 AC 362 ms
57,692 KB
testcase_11 AC 364 ms
57,736 KB
testcase_12 AC 363 ms
57,704 KB
testcase_13 AC 359 ms
57,856 KB
testcase_14 AC 361 ms
57,740 KB
testcase_15 WA -
testcase_16 AC 361 ms
57,744 KB
testcase_17 AC 364 ms
57,804 KB
testcase_18 AC 359 ms
57,792 KB
testcase_19 WA -
testcase_20 AC 360 ms
57,824 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 368 ms
57,696 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 362 ms
57,820 KB
testcase_28 AC 364 ms
57,796 KB
testcase_29 AC 368 ms
57,808 KB
testcase_30 AC 366 ms
57,844 KB
testcase_31 WA -
testcase_32 AC 369 ms
57,792 KB
testcase_33 AC 360 ms
57,692 KB
testcase_34 AC 362 ms
57,832 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:39:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

import java.util.Scanner

fun duplication(input: List<String>): MutableList<String>{
	var list: MutableList<String> = mutableListOf()
	for(i in 0..input.count() - 2){
		if( !(input[i] in list) ) list.add(input[i])
	}
	return list
}

fun charaCount(input: List<String>, duplicationList: MutableList<String>): MutableList<Int>{
	var countList: MutableList<Int> = mutableListOf()
	for(item in duplicationList){
		var count: Int = 0
		for(i in 0..input.count() - 2){
			if(item == input[i]) count++
		}
		countList.add(count)
	}
	return countList
}

fun run(duplicationList: MutableList<String>, countList: MutableList<Int>){
	var flag: Boolean = false
	var result: String = ""
	for(i in 0..countList.count() - 1){
		if(countList[i] > 2){
			flag = false
			break
		} else if(countList[i] == 1){
			result = duplicationList[i]
			flag = true
		}
	}
	if(flag == true) println(result)
	else println("Impossible")
}

fun main(args: Array<String>){
	var input = (Scanner(System. `in`).next()).split(Regex(""))
	var duplicationList = duplication(input)
	var countList = charaCount(input, duplicationList)
	run(duplicationList, countList)
}
0