結果
| 問題 | No.687 E869120 and Constructing Array 1 |
| コンテスト | |
| ユーザー |
ken8aisa
|
| 提出日時 | 2018-06-18 14:38:53 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 153 bytes |
| 記録 | |
| コンパイル時間 | 293 ms |
| コンパイル使用メモリ | 70,856 KB |
| 実行使用メモリ | 7,716 KB |
| 最終ジャッジ日時 | 2026-03-20 22:36:56 |
| 合計ジャッジ時間 | 1,277 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 |
ソースコード
#include<iostream>
#include<string>
using namespace std;
int main() {
int n;
cin >> n;
int m = n / 2;
cout << m << " " << n - m << endl;
return 0;
}
ken8aisa