結果
問題 | No.587 七対子 |
ユーザー | R_F |
提出日時 | 2017-11-28 00:38:42 |
言語 | Kotlin (1.9.23) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,185 bytes |
コンパイル時間 | 10,805 ms |
コンパイル使用メモリ | 440,812 KB |
実行使用メモリ | 58,112 KB |
最終ジャッジ日時 | 2024-04-30 16:31:50 |
合計ジャッジ時間 | 22,864 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 304 ms
57,804 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 317 ms
57,984 KB |
testcase_06 | AC | 334 ms
57,756 KB |
testcase_07 | AC | 315 ms
57,728 KB |
testcase_08 | AC | 317 ms
57,816 KB |
testcase_09 | AC | 303 ms
57,704 KB |
testcase_10 | WA | - |
testcase_11 | AC | 299 ms
57,752 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 305 ms
57,812 KB |
testcase_16 | AC | 313 ms
57,720 KB |
testcase_17 | AC | 322 ms
57,680 KB |
testcase_18 | AC | 314 ms
57,792 KB |
testcase_19 | AC | 299 ms
57,876 KB |
testcase_20 | AC | 309 ms
57,880 KB |
testcase_21 | AC | 308 ms
57,804 KB |
testcase_22 | AC | 304 ms
57,704 KB |
testcase_23 | AC | 307 ms
57,952 KB |
testcase_24 | AC | 305 ms
57,816 KB |
testcase_25 | AC | 305 ms
57,796 KB |
testcase_26 | AC | 301 ms
57,712 KB |
testcase_27 | AC | 317 ms
57,880 KB |
testcase_28 | AC | 299 ms
57,848 KB |
testcase_29 | AC | 294 ms
57,744 KB |
testcase_30 | AC | 311 ms
57,736 KB |
testcase_31 | AC | 302 ms
57,716 KB |
testcase_32 | WA | - |
testcase_33 | AC | 308 ms
57,828 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) }