結果

問題 No.1972 Modulo Set
ユーザー tailstails
提出日時 2022-06-10 21:34:48
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 131 bytes
コンパイル時間 2,683 ms
コンパイル使用メモリ 182,552 KB
実行使用メモリ 16,640 KB
最終ジャッジ日時 2024-09-21 06:01:34
合計ジャッジ時間 5,930 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 4 ms
6,944 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 5 ms
6,944 KB
testcase_14 AC 6 ms
6,944 KB
testcase_15 WA -
testcase_16 AC 76 ms
8,192 KB
testcase_17 AC 22 ms
6,944 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 62 ms
8,192 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 52 ms
7,808 KB
testcase_23 AC 126 ms
14,592 KB
testcase_24 AC 40 ms
7,936 KB
testcase_25 AC 67 ms
10,368 KB
testcase_26 WA -
testcase_27 AC 145 ms
15,104 KB
testcase_28 AC 42 ms
8,064 KB
testcase_29 AC 66 ms
10,496 KB
testcase_30 AC 105 ms
13,184 KB
testcase_31 AC 4 ms
6,940 KB
testcase_32 AC 89 ms
12,160 KB
testcase_33 AC 159 ms
16,512 KB
testcase_34 AC 159 ms
16,640 KB
testcase_35 AC 165 ms
16,512 KB
testcase_36 AC 160 ms
16,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

map<ll,ll>b;
ll@n,@m,@a[n],z=0;
rep(i,n)++b[a[i]%=m];
rep(i,n)
	z+=a[i]*2%m?max(b[a[i]],b[m-a[i]]):1,
	b[a[i]]=b[m-a[i]]=0;
wt(z);
0