結果
問題 | No.587 七対子 |
ユーザー | R_F |
提出日時 | 2017-11-28 00:38:42 |
言語 | Kotlin (1.9.23) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,185 bytes |
コンパイル時間 | 15,114 ms |
コンパイル使用メモリ | 436,080 KB |
実行使用メモリ | 57,960 KB |
最終ジャッジ日時 | 2024-11-20 13:18:15 |
合計ジャッジ時間 | 27,125 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 366 ms
57,732 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 362 ms
57,860 KB |
testcase_06 | AC | 361 ms
57,808 KB |
testcase_07 | AC | 358 ms
57,812 KB |
testcase_08 | AC | 368 ms
57,800 KB |
testcase_09 | AC | 367 ms
57,804 KB |
testcase_10 | WA | - |
testcase_11 | AC | 368 ms
57,756 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 362 ms
57,808 KB |
testcase_16 | AC | 361 ms
57,816 KB |
testcase_17 | AC | 375 ms
57,728 KB |
testcase_18 | AC | 369 ms
57,804 KB |
testcase_19 | AC | 358 ms
57,848 KB |
testcase_20 | AC | 360 ms
57,704 KB |
testcase_21 | AC | 360 ms
57,864 KB |
testcase_22 | AC | 364 ms
57,740 KB |
testcase_23 | AC | 369 ms
57,812 KB |
testcase_24 | AC | 362 ms
57,700 KB |
testcase_25 | AC | 360 ms
57,740 KB |
testcase_26 | AC | 360 ms
57,724 KB |
testcase_27 | AC | 357 ms
57,716 KB |
testcase_28 | AC | 366 ms
57,720 KB |
testcase_29 | AC | 360 ms
57,784 KB |
testcase_30 | AC | 356 ms
57,724 KB |
testcase_31 | AC | 360 ms
57,780 KB |
testcase_32 | WA | - |
testcase_33 | AC | 362 ms
57,612 KB |
testcase_34 | WA | - |
コンパイルメッセージ
Main.kt:39:10: warning: parameter 'args' is never used fun main(args: Array<String>){ ^
ソースコード
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: MutableList<String> = mutableListOf() for(i in 0..countList.count() - 1){ if(countList[i] > 2){ flag = false break } else if(countList[i] == 1){ result.add(duplicationList[i]) flag = true } } if(flag == true && result.count() == 1) println(result[0]) 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) }