結果

問題 No.2249 GCDistance
ユーザー tailstails
提出日時 2023-03-18 12:54:59
言語 cLay
(20240714-1)
結果
AC  
実行時間 1,164 ms / 5,000 ms
コード長 177 bytes
コンパイル時間 3,042 ms
コンパイル使用メモリ 174,224 KB
実行使用メモリ 83,584 KB
最終ジャッジ日時 2024-09-18 13:15:11
合計ジャッジ時間 17,929 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,038 ms
81,536 KB
testcase_01 AC 1,094 ms
83,456 KB
testcase_02 AC 1,090 ms
83,456 KB
testcase_03 AC 1,098 ms
83,584 KB
testcase_04 AC 1,075 ms
83,200 KB
testcase_05 AC 1,150 ms
83,456 KB
testcase_06 AC 1,164 ms
83,456 KB
testcase_07 AC 1,105 ms
83,584 KB
testcase_08 AC 1,067 ms
81,536 KB
testcase_09 AC 1,069 ms
83,584 KB
testcase_10 AC 1,125 ms
83,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll d[1d7+1]{};
rep(i,2,1d7+1){
	d[i]=i;
}
rep(i,2,1d7+1){
	if(d[i]==i){
		rep(j,i,1d7+1,i){
			d[j]-=d[j]/i;
		}
	}
	d[i]=d[i-1]-d[i]+i*2-2;
}
ll@t;
rep(t){
	ll@n;
	wt(d[n]);
}
0