結果

問題 No.1415 100の倍数かつ正整数(1)
ユーザー kazuyakazuya
提出日時 2021-07-13 17:15:01
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 123 bytes
コンパイル時間 62 ms
コンパイル使用メモリ 18,596 KB
実行使用メモリ 18,840 KB
最終ジャッジ日時 2023-09-15 10:10:23
合計ジャッジ時間 1,449 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 16 ms
18,764 KB
testcase_02 AC 15 ms
18,752 KB
testcase_03 AC 17 ms
18,756 KB
testcase_04 AC 16 ms
18,704 KB
testcase_05 WA -
testcase_06 AC 16 ms
18,764 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 16 ms
18,684 KB
testcase_10 AC 15 ms
18,704 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 16 ms
18,724 KB
testcase_14 WA -
testcase_15 AC 15 ms
18,708 KB
testcase_16 WA -
testcase_17 AC 16 ms
18,788 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 15 ms
18,768 KB
testcase_23 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$count = 0;

for($i = 1; $i < N; $i++){
    if($i % 100 == 0 && $i >= 1){
        $count++;
    }
}
echo $count;

?>
0