結果

問題 No.687 E869120 and Constructing Array 1
ユーザー mmn15277198mmn15277198
提出日時 2020-06-03 22:56:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 982 ms
コンパイル使用メモリ 80,692 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-26 07:50:11
合計ジャッジ時間 1,965 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 2 ms
5,248 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 WA -
testcase_08 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<math.h>
#include<string.h>
#include<vector>
#include<algorithm>
#include<iomanip>
#include<deque>
using namespace std;

int main(){
	int n;
	cin >> n;
	int a=n,b=0;
	while(1){
		if(a<=10 && b<=10)break;
		a--;
		b++;
	}
	cout << a << " " << b << endl;
	return 0;
}
0