結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー ayaaya
提出日時 2019-07-31 14:17:05
言語 PHP
(8.3.4)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 264 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 32,016 KB
実行使用メモリ 32,660 KB
最終ジャッジ日時 2024-07-05 06:28:15
合計ジャッジ時間 2,304 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 32 ms
31,068 KB
testcase_03 AC 32 ms
31,148 KB
testcase_04 AC 32 ms
31,044 KB
testcase_05 AC 32 ms
31,344 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 33 ms
31,416 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 33 ms
30,928 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 33 ms
31,272 KB
testcase_18 AC 33 ms
31,320 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$prime=[2,3,5,7,11,13];
$notPrime=[4,6,8,9,10,12];
$malti=array();
foreach($prime as $primenum){
  foreach($notPrime as $notPrimenum){
    array_push($malti,$primenum*$notPrimenum);
  }
}
$malti=array_count_values($malti);
echo $malti[trim(fgets(STDIN))]/36;
0