結果

問題 No.313 π
ユーザー yudedakoyudedako
提出日時 2020-08-27 11:49:05
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 431 ms / 5,000 ms
コード長 491 bytes
コンパイル時間 13,454 ms
コンパイル使用メモリ 437,952 KB
実行使用メモリ 54,500 KB
最終ジャッジ日時 2024-11-07 15:36:16
合計ジャッジ時間 30,642 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 427 ms
54,416 KB
testcase_01 AC 425 ms
54,304 KB
testcase_02 AC 425 ms
53,824 KB
testcase_03 AC 430 ms
54,012 KB
testcase_04 AC 421 ms
54,500 KB
testcase_05 AC 423 ms
54,488 KB
testcase_06 AC 423 ms
54,284 KB
testcase_07 AC 422 ms
53,912 KB
testcase_08 AC 427 ms
54,420 KB
testcase_09 AC 419 ms
53,896 KB
testcase_10 AC 423 ms
54,292 KB
testcase_11 AC 420 ms
53,804 KB
testcase_12 AC 419 ms
54,252 KB
testcase_13 AC 426 ms
54,064 KB
testcase_14 AC 420 ms
54,240 KB
testcase_15 AC 425 ms
54,124 KB
testcase_16 AC 424 ms
54,308 KB
testcase_17 AC 431 ms
53,872 KB
testcase_18 AC 421 ms
54,412 KB
testcase_19 AC 421 ms
54,016 KB
testcase_20 AC 427 ms
54,204 KB
testcase_21 AC 423 ms
54,200 KB
testcase_22 AC 427 ms
54,192 KB
testcase_23 AC 422 ms
53,996 KB
testcase_24 AC 426 ms
53,960 KB
testcase_25 AC 430 ms
53,844 KB
testcase_26 AC 423 ms
54,388 KB
testcase_27 AC 419 ms
53,972 KB
testcase_28 AC 428 ms
54,212 KB
testcase_29 AC 421 ms
53,808 KB
testcase_30 AC 429 ms
54,272 KB
testcase_31 AC 424 ms
54,212 KB
testcase_32 AC 425 ms
54,204 KB
testcase_33 AC 419 ms
53,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val count = IntArray(10){0}
    val str = readLine()!!.trim()
    for (c in str ){
        if (c.isDigit()) {
            count[c - '0']++
        }
    }
    var from = -1
    var to = -1
    var check = 41038
    for (i in 0 until 10) {
        if (check % 3 != count[i] % 3) {
            if ((check + 1) % 3 == count[i] % 3) {
                to = i
            }else {
                from = i
            }
        }
        check /= 3
    }
    println("$to $from")
}
0