結果

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

ソースコード

diff #

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

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