結果
| 問題 | No.552 十分簡単な星1の問題 |
| コンテスト | |
| ユーザー |
syunsuke
|
| 提出日時 | 2018-08-27 22:03:51 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 197 bytes |
| コンパイル時間 | 440 ms |
| コンパイル使用メモリ | 54,872 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-05 17:51:13 |
| 合計ジャッジ時間 | 1,417 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 47 |
ソースコード
#include <iostream>
#include <string>
using namespace std;
int main(void){
// Your code here!
string N;
cin>>N;
if(N=="0")cout<<N<<endl;
else cout<<N<<"0"<<endl;
return 0;
}
syunsuke