結果
問題 | No.522 Make Test Cases(テストケースを作る) |
ユーザー | Krishna Sameer |
提出日時 | 2022-10-04 14:24:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 517 bytes |
コンパイル時間 | 1,644 ms |
コンパイル使用メモリ | 165,340 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-09 12:18:39 |
合計ジャッジ時間 | 6,534 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
5,248 KB |
testcase_01 | AC | 20 ms
5,376 KB |
testcase_02 | AC | 14 ms
5,376 KB |
testcase_03 | AC | 49 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 30 ms
5,376 KB |
testcase_10 | TLE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define int long long #define pb emplace_back #define sz(v) (int)(v.size()) #define all(v) (v.begin(),v.end()) signed main(){ ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); // freopen("input.txt","r",stdin); // freopen("output.txt","w",stdout); int n; cin >> n; for(int i = 1;i<n;i++){ for(int j = i;j<n;j++){ for(int k = j;k<n;k++){ if(i+j+k == n) cout << i << " " << j << " " << k << "\n"; } } } return 0; }