結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー koba-e964koba-e964
提出日時 2017-07-22 21:42:10
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 871 bytes
コンパイル時間 561 ms
コンパイル使用メモリ 87,420 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-17 15:58:32
合計ジャッジ時間 4,131 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 6 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 9 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 128 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bitset>
#include <cassert>
#include <cctype>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
#include <deque>
#include <functional>
#include <iomanip>
#include <iostream>
#include <list>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <utility>
#include <vector>

#define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++)

using namespace std;
typedef long long int ll;
typedef vector<int> VI;
typedef vector<ll> VL;
typedef pair<int, int> PI;
const ll mod = 1e9 + 7;



int main(void) {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n;
  cin >> n;
  REP(a, 1, n / 3 + 1) {
    REP(b, a, (n - a) / 2 + 1) {
      int c = n - a - b;
      if (b <= c) {
	cout << a << " " << b << " " << c << "\n";
      }
    }
  }
}
0