結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー sakai
提出日時 2020-11-17 13:36:50
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 355 bytes
コンパイル時間 1,558 ms
コンパイル使用メモリ 167,152 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-23 08:14:32
合計ジャッジ時間 2,573 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
    int K;
    
    double count=0;
    cin>>K;
    int sosuu[6] = {2,3,5,7,11,13};
    int gouse[6] = {4,6,8,9,10,12};
    for(int i = 0;i<6;i++){
        for(int j = 0;j<6;j++){
            if((sosuu[i]*gouse[j])==K){
                count++;
            }
        }
    }
    cout<<count/36;
}
0