結果

問題 No.2449 square_permutation
ユーザー tailstails
提出日時 2023-08-31 21:27:33
言語 cLay
(20240714-1)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 2,440 ms
コンパイル使用メモリ 177,924 KB
実行使用メモリ 19,968 KB
最終ジャッジ日時 2024-06-11 01:34:17
合計ジャッジ時間 4,970 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 14 ms
9,088 KB
testcase_07 AC 16 ms
9,856 KB
testcase_08 AC 17 ms
10,496 KB
testcase_09 AC 20 ms
11,648 KB
testcase_10 AC 26 ms
14,592 KB
testcase_11 AC 29 ms
15,488 KB
testcase_12 AC 32 ms
16,000 KB
testcase_13 AC 42 ms
19,712 KB
testcase_14 AC 43 ms
19,712 KB
testcase_15 AC 48 ms
19,840 KB
testcase_16 AC 45 ms
19,712 KB
testcase_17 AC 45 ms
19,840 KB
testcase_18 AC 36 ms
18,304 KB
testcase_19 AC 41 ms
19,584 KB
testcase_20 AC 41 ms
19,840 KB
testcase_21 AC 41 ms
19,968 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 41 ms
19,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@n,a[n+1];
VI v[n+1];
a[0..n]=(0..);
int pr[500];
REP[pr](p,Prime(548,pr)){
	ll pp=(ll)p*p;
	for(ll j=1;j*=pp,j<=n;){
		rep(k,n/j+1){
			a[k*j]/=pp;
		}
	}
}
rep(i,1,n+1){
	v[a[i]].push_back(i);
}
rep(i,1,n+1){
	wtSp(v[a[i]].back());
	v[a[i]].pop_back();
}
0