結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー fura
提出日時 2020-03-14 18:34:57
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 12 ms / 1,000 ms
コード長 270 bytes
コンパイル時間 1,813 ms
コンパイル使用メモリ 193,160 KB
最終ジャッジ日時 2025-01-09 06:53:10
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます
コンパイルメッセージ
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);
      |                ~~~~~^~~~~~~~~

ソースコード

diff #

#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[j]==k) cnt++;
	printf("%.15f\n",cnt/36.0);

	return 0;
}
0