結果

問題 No.1619 Coccinellidae
ユーザー publflpublfl
提出日時 2021-07-22 22:18:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 477 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 32,384 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-17 18:17:34
合計ジャッジ時間 3,021 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 9 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 12 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 7 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 7 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 11 ms
5,376 KB
testcase_14 WA -
testcase_15 AC 1 ms
5,376 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

long long int ans[100010];
int main()
{
	long long int a,b,c;
	scanf("%lld%lld%lld",&a,&b,&c);
	
	for(int i=0;i<a;i++)
	{
		if(c>=(a-i-1))
		{
			c -= (a-i-1);
			ans[a-i] = i;
		}
		else
		{
			ans[1+c] = i;
			for(int k=1;k<=c;k++) ans[k] = i+k;
			for(int k=c+2;k<a-(i-1);k++) ans[k] = i+k-1;
			break;
		}
	}
	
	for(int i=1;i<=a;i++)
	{
		if(ans[i]==a)
		{
			ans[i] += (b-a*(a-1)/2);
			break;
		}
	}
	
	for(int i=1;i<=a;i++) printf("%lld\n",ans[i]);
}
0