結果

問題 No.2561 みんな大好きmod 998
ユーザー rururunrururun
提出日時 2024-11-09 14:10:11
言語 Swift
(5.10.0)
結果
WA  
実行時間 -
コード長 405 bytes
コンパイル時間 12,825 ms
コンパイル使用メモリ 129,968 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-11-09 14:10:26
合計ジャッジ時間 15,304 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
9,216 KB
testcase_01 AC 9 ms
9,216 KB
testcase_02 AC 8 ms
9,344 KB
testcase_03 AC 30 ms
9,216 KB
testcase_04 AC 28 ms
9,216 KB
testcase_05 WA -
testcase_06 AC 28 ms
9,344 KB
testcase_07 AC 8 ms
9,344 KB
testcase_08 AC 7 ms
9,216 KB
testcase_09 AC 8 ms
9,088 KB
testcase_10 AC 14 ms
9,216 KB
testcase_11 AC 11 ms
9,216 KB
testcase_12 AC 8 ms
9,344 KB
testcase_13 AC 8 ms
9,216 KB
testcase_14 AC 8 ms
9,216 KB
testcase_15 AC 30 ms
9,344 KB
testcase_16 AC 8 ms
9,216 KB
testcase_17 AC 8 ms
9,216 KB
testcase_18 AC 8 ms
9,216 KB
testcase_19 AC 23 ms
9,344 KB
testcase_20 AC 8 ms
9,216 KB
testcase_21 AC 8 ms
9,216 KB
testcase_22 AC 8 ms
9,216 KB
testcase_23 AC 8 ms
9,344 KB
testcase_24 AC 7 ms
9,344 KB
testcase_25 AC 8 ms
9,088 KB
testcase_26 AC 12 ms
9,216 KB
testcase_27 AC 31 ms
9,216 KB
testcase_28 AC 14 ms
9,216 KB
testcase_29 AC 11 ms
9,216 KB
testcase_30 AC 14 ms
9,216 KB
testcase_31 AC 19 ms
9,088 KB
testcase_32 AC 11 ms
9,216 KB
testcase_33 AC 9 ms
9,216 KB
testcase_34 AC 29 ms
9,216 KB
testcase_35 AC 10 ms
9,216 KB
testcase_36 AC 10 ms
9,088 KB
testcase_37 AC 8 ms
9,216 KB
testcase_38 AC 10 ms
9,216 KB
testcase_39 AC 13 ms
9,216 KB
testcase_40 AC 12 ms
9,216 KB
testcase_41 AC 11 ms
9,344 KB
testcase_42 AC 13 ms
9,088 KB
testcase_43 AC 8 ms
9,088 KB
testcase_44 AC 9 ms
9,344 KB
testcase_45 AC 23 ms
9,216 KB
testcase_46 AC 10 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let nk = readLine()!.split(separator: " ").map{Int($0)!}
let (n,k) = (nk[0],nk[1])
let arr = readLine()!.split(separator: " ").map{Int($0)!}
var cnt = 0
func loop(_ a: Int, _ sum: Int, _ k: Int){
    if k == 0{
        if sum % 998244352 <= sum % 998{
            cnt += 1
        }
    }else{
        for i in a...(n-k){
            loop(i+1,sum+arr[i],k-1)
        }
    }
}
loop(0,0,k)
print(cnt % 998)
0