結果

問題 No.548 国士無双
ユーザー R_FR_F
提出日時 2017-12-08 12:39:48
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 543 bytes
コンパイル時間 11,588 ms
コンパイル使用メモリ 438,420 KB
実行使用メモリ 57,788 KB
最終ジャッジ日時 2024-04-30 16:37:29
合計ジャッジ時間 21,362 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 358 ms
57,640 KB
testcase_01 AC 361 ms
57,512 KB
testcase_02 AC 353 ms
57,660 KB
testcase_03 AC 358 ms
57,552 KB
testcase_04 AC 364 ms
57,776 KB
testcase_05 AC 357 ms
57,780 KB
testcase_06 AC 356 ms
57,564 KB
testcase_07 AC 353 ms
57,788 KB
testcase_08 AC 353 ms
57,624 KB
testcase_09 AC 362 ms
57,624 KB
testcase_10 AC 361 ms
57,528 KB
testcase_11 AC 362 ms
57,628 KB
testcase_12 AC 359 ms
57,644 KB
testcase_13 AC 360 ms
57,636 KB
testcase_14 AC 359 ms
57,704 KB
testcase_15 AC 361 ms
57,616 KB
testcase_16 AC 357 ms
57,652 KB
testcase_17 AC 360 ms
57,524 KB
testcase_18 AC 361 ms
57,652 KB
testcase_19 AC 359 ms
57,520 KB
testcase_20 AC 361 ms
57,528 KB
testcase_21 AC 355 ms
57,504 KB
testcase_22 AC 356 ms
57,700 KB
testcase_23 AC 368 ms
57,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:20:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

import java.util.Scanner

class No548() {
	var array = mutableListOf('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm')
	var input = Scanner(System. `in`).next()

	fun differenceSet(): MutableList<Char> {
		input.forEach { array.remove(it) }
		return array
	}

	fun judge(){
		var except = differenceSet()
		if (except.size > 1) println("Impossible")
		else if (except.size == 0) println("a\nb\nc\nd\ne\nf\ng\nh\ni\nj\nk\nl\nm")
		else println(except[0])
	}
}

fun main(args: Array<String>){
	var no548 = No548()
	no548.judge()
}
0