結果

問題 No.1415 100の倍数かつ正整数(1)
ユーザー A
提出日時 2021-03-27 01:21:21
言語 JavaScript
(node v23.5.0)
結果
RE  
実行時間 -
コード長 223 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 41,072 KB
最終ジャッジ日時 2024-11-29 04:49:52
合計ジャッジ時間 2,368 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

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

Main(input){
    input=0+input;
    var count=0;
    if(input<0){
        count=0;
    }else{
        count=Math.floor(input/100);
    }
    console.log(count+'\n');
}
0