結果

問題 No.552 十分簡単な星1の問題
ユーザー olphe
提出日時 2017-08-11 22:43:59
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 961 ms
コンパイル使用メモリ 102,080 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 21:28:03
合計ジャッジ時間 2,255 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 47
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "iostream"
#include "climits"
#include "list"
#include "queue"
#include "stack"
#include "set"
#include "functional"
#include "algorithm"
#include "string"
#include "map"
#include "iomanip"
#include "random"

using namespace std;
const long long int MOD = 1000000007;
const long double EPS = 0.0000000001;

long long int N, M, K, Q, W, H, L, R;
long long int ans;

long long int num[200000];


int main() {
	ios::sync_with_stdio(false);
	string s;
	cin >> s;
	if (s == "0")cout << s << endl;
	else cout << s << "0\n";
	return 0;
}
0