結果

問題 No.2947 Sing a Song
ユーザー ImTabooImTaboo
提出日時 2024-11-24 13:27:36
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 654 bytes
コンパイル時間 14,494 ms
コンパイル使用メモリ 439,456 KB
実行使用メモリ 66,652 KB
最終ジャッジ日時 2024-11-24 13:28:11
合計ジャッジ時間 34,662 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 330 ms
51,740 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 413 ms
52,648 KB
testcase_04 AC 591 ms
59,192 KB
testcase_05 AC 393 ms
52,632 KB
testcase_06 AC 526 ms
60,656 KB
testcase_07 AC 523 ms
55,088 KB
testcase_08 AC 585 ms
56,668 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 403 ms
52,996 KB
testcase_12 WA -
testcase_13 AC 676 ms
58,908 KB
testcase_14 AC 397 ms
52,928 KB
testcase_15 WA -
testcase_16 AC 406 ms
53,176 KB
testcase_17 AC 540 ms
55,800 KB
testcase_18 AC 548 ms
55,636 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 420 ms
53,404 KB
testcase_22 AC 553 ms
55,952 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 670 ms
57,508 KB
testcase_26 AC 805 ms
63,228 KB
testcase_27 AC 963 ms
66,352 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:4:9: warning: variable 'n' is never used
    val n = readln().toInt()
        ^

ソースコード

diff #

// https://yukicoder.me/problems/no/2947

fun main() {
    val n = readln().toInt()
    var (s, t) = readln().split(" ")
    val a = readln().split(" ").map { it.toInt() }

    if(s.length < t.length) {
        val u = s
        s = t
        t = u
    }

    for(w in a) {
         // a|s| + b|t| = w
        for(i in 0..(w/s.length)){
            if((w - i*s.length) % t.length == 0) {
                val j = (w - i*s.length) / t.length

                for(k in 0..<i)
                    print("$s ")
                for(k in 0..<j)
                    print("$t ")
                println("")

                break
            }
        }
    }
}
0