結果

問題 No.2051 Divide
ユーザー SKSK
提出日時 2022-12-22 10:07:52
言語 PHP
(8.3.4)
結果
TLE  
実行時間 -
コード長 178 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 32,400 KB
実行使用メモリ 64,680 KB
最終ジャッジ日時 2024-11-18 03:15:27
合計ジャッジ時間 56,334 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
39,096 KB
testcase_01 AC 33 ms
64,680 KB
testcase_02 AC 1,858 ms
39,096 KB
testcase_03 AC 427 ms
64,680 KB
testcase_04 AC 174 ms
38,836 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 848 ms
39,220 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 381 ms
38,968 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 507 ms
39,092 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
[$a,$b] = explode(" ",trim(fgets(STDIN)));
$count = 0;

for ($i = 1; $i <= $a; $i++) {
     if ($a % $i == 0 && $i % $b == 0) {
         $count++;
     }
}

echo $count;
?>
0