結果

問題 No.2561 みんな大好きmod 998
ユーザー ID 21712ID 21712
提出日時 2024-11-12 22:11:22
言語 Go
(1.22.1)
結果
AC  
実行時間 547 ms / 4,000 ms
コード長 552 bytes
コンパイル時間 11,535 ms
コンパイル使用メモリ 235,836 KB
実行使用メモリ 106,472 KB
最終ジャッジ日時 2024-11-12 22:11:42
合計ジャッジ時間 19,361 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 31 ms
12,192 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 547 ms
106,472 KB
testcase_04 AC 502 ms
100,572 KB
testcase_05 AC 509 ms
98,256 KB
testcase_06 AC 461 ms
92,076 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 73 ms
20,636 KB
testcase_12 AC 1 ms
6,816 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 1 ms
6,820 KB
testcase_15 AC 480 ms
91,976 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 1 ms
6,816 KB
testcase_18 AC 1 ms
6,816 KB
testcase_19 AC 365 ms
80,624 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,824 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 1 ms
6,820 KB
testcase_25 AC 1 ms
6,820 KB
testcase_26 AC 94 ms
24,784 KB
testcase_27 AC 497 ms
91,976 KB
testcase_28 AC 123 ms
28,972 KB
testcase_29 AC 37 ms
9,984 KB
testcase_30 AC 135 ms
35,252 KB
testcase_31 AC 269 ms
69,708 KB
testcase_32 AC 41 ms
12,300 KB
testcase_33 AC 36 ms
9,980 KB
testcase_34 AC 508 ms
104,352 KB
testcase_35 AC 25 ms
10,088 KB
testcase_36 AC 24 ms
10,088 KB
testcase_37 AC 11 ms
7,812 KB
testcase_38 AC 72 ms
20,636 KB
testcase_39 AC 130 ms
37,244 KB
testcase_40 AC 154 ms
35,252 KB
testcase_41 AC 73 ms
20,636 KB
testcase_42 AC 123 ms
31,068 KB
testcase_43 AC 11 ms
7,808 KB
testcase_44 AC 53 ms
16,456 KB
testcase_45 AC 348 ms
81,572 KB
testcase_46 AC 32 ms
10,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"

const m1=998
const m2=998244353

type S struct {
	c int
	s1,s2 int64
}

func (s *S)add(x int64) *S {
	return &S{
		c:s.c+1,
		s1:(s.s1+x)%m1,
		s2:(s.s2+x)%m2,
	}
}

func (s *S)stop(k int)bool {
	return s.c==k
}

func (s *S)ok() bool {
	return s.s1>=s.s2
}

func main() {
	var n,k int
	Scan(&n,&k)
	var ans int
	p:=[]*S{new(S)}
	for ;n>0;n-- {
		var a int64
		Scan(&a)
		for _,e:=range p {
			t:=e.add(a)
			if t.stop(k) {
				if t.ok() {
					ans++
				}
			} else {
				p=append(p,t)
			}
		}
	}
	ans%=m1
	Println(ans)
}
0