結果

問題 No.687 E869120 and Constructing Array 1
ユーザー suga___0125
提出日時 2018-06-14 20:18:37
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 365 bytes
コンパイル時間 495 ms
コンパイル使用メモリ 63,336 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-30 14:28:04
合計ジャッジ時間 1,094 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <algorithm>
#include <string>
#include <vector>
using namespace std;
typedef long long ll;
int ans=0;
void aout(void){
	cout<<ans<<endl;
}
void out(int a){
	cout<<a<<endl;
}
int main(void){
	int n;
	cin>>n;
	if(n<11){
		cout<<"1 "<<n-1<<endl;
	}else{
		cout<<"10 "<<n-10<<endl;
	}
}
0