結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー YukiDarumaYukiDaruma
提出日時 2017-06-02 22:50:06
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,046 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 1,396 ms
コンパイル使用メモリ 165,764 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-22 02:14:04
合計ジャッジ時間 4,444 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main( int argc, char *argv[] )
{
int N;
int a;
int b;
int c;
int iMaxA;
int iMaxB;

	ios::sync_with_stdio( false );
	cin.tie( 0 );

	cin >> N;

	iMaxA = N / 3;
	for( a = 1; a <= iMaxA; a++ )
	{
		iMaxB = ( N - a ) / 2;
		for( b = a; b <= iMaxB; b++ )
		{
			c = N - a - b;
			if( c >= b )
				cout << a << " " << b << " " << c << endl;
		}
	}

	return 0;
}


0