結果
問題 | No.687 E869120 and Constructing Array 1 |
ユーザー | troro_kelp |
提出日時 | 2018-09-03 23:39:20 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 5 ms / 1,000 ms |
コード長 | 1,064 bytes |
コンパイル時間 | 834 ms |
コンパイル使用メモリ | 96,632 KB |
実行使用メモリ | 8,304 KB |
最終ジャッジ日時 | 2024-10-09 20:31:31 |
合計ジャッジ時間 | 1,477 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
8,176 KB |
testcase_01 | AC | 4 ms
8,176 KB |
testcase_02 | AC | 3 ms
8,172 KB |
testcase_03 | AC | 4 ms
8,264 KB |
testcase_04 | AC | 4 ms
8,132 KB |
testcase_05 | AC | 5 ms
8,152 KB |
testcase_06 | AC | 4 ms
8,304 KB |
testcase_07 | AC | 4 ms
8,108 KB |
testcase_08 | AC | 4 ms
8,192 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <string> #include <map> #include <cmath> #include <queue> #include <numeric> #include <climits> #include <iterator> #include <iomanip> #include <stack> #include <set> #include <bitset> #include <functional> using namespace std; const constexpr int INF = 1e9; //typedef std::pair<std::string,double> P; #define FOR(i, a, n) for (ll i = (ll)a; i<(ll)n; ++i) #define REP(i, n) FOR(i, 0, n) typedef long long ll; typedef vector<int> VI; const constexpr ll MOD = 1e9+7; vector<pair<int, int> > vp; struct Less { bool operator()(const pair<int, int>& x, const pair<int, int>& y) const { return x.first > y.first; } }; ll GCD(ll a, ll b){ if(b==0) return a; return GCD(b, a%b); } //グラフの隣接リスト VI g[200010]; //頂点の入次数を管理 int h[100010]; vector<int> v; int main(void) { int n; cin >> n; for(int i=1; i<=10; ++i){ if(n-i<=10) { cout << i << " " << n-i << endl; break; } } return 0; }