結果

問題 No.552 十分簡単な星1の問題
ユーザー ut0s
提出日時 2019-08-30 08:27:44
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 1,592 ms
コンパイル使用メモリ 166,704 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-19 05:41:51
合計ジャッジ時間 2,920 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 47
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
  @file 552.cpp
  @title  No.552 十分簡単な星1の問題 - yukicoder
  @url https://yukicoder.me/problems/no/552
**/

#include <bits/stdc++.h>
using namespace std;

typedef long long LL;
#define ALL(obj) (obj).begin(), (obj).end()
#define REP(i, N) for (int i = 0; i < (N); ++i)

int main() {
  string S;
  cin >> S;

  if (S == "0") {
    cout << S << endl;
  } else {
    cout << S + "0" << endl;
  }
  return 0;
}
0