結果

問題 No.552 十分簡単な星1の問題
ユーザー mlpj56d
提出日時 2017-08-22 08:03:41
言語 JavaScript
(node v23.5.0)
結果
WA  
実行時間 -
コード長 179 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 39,552 KB
最終ジャッジ日時 2024-10-13 00:25:09
合計ジャッジ時間 3,947 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 43 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

function Main(input){
    var num = input - 0;
    if(num != 0){
        var cal = num + "0";
    }
    console.log(cal);
}

Main(require("fs").readFileSync("/dev/stdin","utf8"));
0