結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー naimonon77naimonon77
提出日時 2015-09-20 22:38:59
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 529 bytes
コンパイル時間 458 ms
コンパイル使用メモリ 58,776 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-07-19 08:24:31
合計ジャッジ時間 904 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:28:15: warning: use of ‘ll’ length modifier with ‘f’ type character has either no effect or undefined behavior [-Wformat=]
   28 |    printf("%llf\n",ans);
      |               ^

ソースコード

diff #

#include <iostream>
using namespace std;
#include <cstdio>
#include <string.h>
#include <stdlib.h>
#include <math.h>

#define FOR(i,a,b) for(int (i)=(a);i<(b);i++)

typedef long long ll;
typedef unsigned long long ull;
typedef long double lb;

/* ここからが本編 */


int main(void)
{
   int i,j,k,l;
   int p,c;
   long double a,b,ans=1;
   a = (long double)(2+3+5+7+11+13)/6;
   b = (long double)(4+6+8+9+10+12)/6;

   cin >> p >> c;
   FOR(i,0,p) ans *= a;
   FOR(i,0,c) ans *= b;
   printf("%llf\n",ans);
   return 0;
}
0