結果

問題 No.1415 100の倍数かつ正整数(1)
ユーザー A
提出日時 2021-03-27 01:14:57
言語 JavaScript
(node v23.5.0)
結果
RE  
実行時間 -
コード長 199 bytes
コンパイル時間 33 ms
コンパイル使用メモリ 5,248 KB
実行使用メモリ 39,424 KB
最終ジャッジ日時 2024-11-29 04:39:26
合計ジャッジ時間 2,655 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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);
}
0