結果
| 問題 | No.552 十分簡単な星1の問題 |
| コンテスト | |
| ユーザー |
samplelpmas
|
| 提出日時 | 2017-12-28 23:48:06 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 223 bytes |
| 記録 | |
| コンパイル時間 | 458 ms |
| コンパイル使用メモリ | 55,900 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-21 09:33:16 |
| 合計ジャッジ時間 | 1,794 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 47 |
ソースコード
#include <iostream>
#include <string>
using namespace std;
int main() {
string N;
cin >> N;
if (N == "0") {
cout << N << endl;
return 0;
}
cout << N + "0" << endl;
return 0;
}
samplelpmas