結果
| 問題 | No.1415 100の倍数かつ正整数(1) |
| コンテスト | |
| ユーザー |
A
|
| 提出日時 | 2021-03-27 01:21:21 |
| 言語 | JavaScript (node v25.8.2) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 223 bytes |
| 記録 | |
| コンパイル時間 | 92 ms |
| コンパイル使用メモリ | 7,972 KB |
| 実行使用メモリ | 55,332 KB |
| 最終ジャッジ日時 | 2026-05-23 01:54:41 |
| 合計ジャッジ時間 | 3,729 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 24 |
ソースコード
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');
}
A