結果
| 問題 | No.552 十分簡単な星1の問題 |
| コンテスト | |
| ユーザー |
yuma220284
|
| 提出日時 | 2019-04-05 14:33:42 |
| 言語 | C++11(old_compat) (gcc 12.4.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 147 bytes |
| 記録 | |
| コンパイル時間 | 1,092 ms |
| コンパイル使用メモリ | 166,252 KB |
| 実行使用メモリ | 7,844 KB |
| 最終ジャッジ日時 | 2026-03-08 16:19:31 |
| 合計ジャッジ時間 | 2,129 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 47 |
ソースコード
#include "bits/stdc++.h"
using namespace std;
int main() {
string S;
cin >> S;
if (S != "0") cout << S << 0 << endl;
else cout << 0 << endl;
}
yuma220284