結果

問題 No.552 十分簡単な星1の問題
ユーザー mell1
提出日時 2018-12-19 19:03:06
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 153 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 53,236 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-25 08:05:57
合計ジャッジ時間 1,541 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 42 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(void){
    int i=0;
    char c;
    while(cin>>c) cout<<c,i++;
    if(i-1) cout<<"0";
    cout<<"\n";
}
0