結果
| 問題 | 
                            No.211 素数サイコロと合成数サイコロ (1)
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2020-03-14 18:32:54 | 
| 言語 | C++17  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 270 bytes | 
| コンパイル時間 | 1,977 ms | 
| コンパイル使用メモリ | 192,104 KB | 
| 最終ジャッジ日時 | 2025-01-09 06:52:58 | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 25 WA * 8 | 
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:10:21: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         int k; scanf("%d",&k);
      |                ~~~~~^~~~~~~~~
            
            ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);i++)
using namespace std;
int main(){
	int a[]={2,3,5,7,11,13},b[]={4,6,8,9,10,12};
	int k; scanf("%d",&k);
	int cnt=0;
	rep(i,6) rep(j,6) if(a[i]*b[i]==k) cnt++;
	printf("%.15f\n",cnt/36.0);
	return 0;
}