結果
問題 | No.687 E869120 and Constructing Array 1 |
ユーザー |
![]() |
提出日時 | 2020-08-14 18:45:40 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 495 bytes |
コンパイル時間 | 920 ms |
コンパイル使用メモリ | 91,264 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-10 12:13:27 |
合計ジャッジ時間 | 1,672 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 |
ソースコード
#include <iostream>#include <vector>#include <algorithm>#include <cmath>#include <iomanip>#include <stack>#include <algorithm>#include <string>#include <map>#include <iterator>#include <set>#include <queue>#include <bitset>using namespace std;int main() {int N;cin >> N;for (int a1 = 1; a1 <= 10; ++a1) {int a2 = N - a1;if (1 <= a2 && a2 <= 10) {cout << a1 << " " << a2 << endl;break;}}return 0;}