結果

問題 No.2449 square_permutation
ユーザー tailstails
提出日時 2023-08-31 21:27:33
言語 cLay
(20241019-1)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 3,186 ms
コンパイル使用メモリ 190,180 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2025-01-03 04:53:42
合計ジャッジ時間 5,534 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 15 ms
9,472 KB
testcase_07 AC 16 ms
9,856 KB
testcase_08 AC 18 ms
10,624 KB
testcase_09 AC 20 ms
11,520 KB
testcase_10 AC 28 ms
14,976 KB
testcase_11 AC 30 ms
15,616 KB
testcase_12 AC 32 ms
16,384 KB
testcase_13 AC 45 ms
19,712 KB
testcase_14 AC 45 ms
19,840 KB
testcase_15 AC 49 ms
19,840 KB
testcase_16 AC 42 ms
19,840 KB
testcase_17 AC 48 ms
20,096 KB
testcase_18 AC 38 ms
18,560 KB
testcase_19 AC 40 ms
19,712 KB
testcase_20 AC 45 ms
19,840 KB
testcase_21 AC 45 ms
19,712 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 44 ms
20,096 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