結果
問題 | No.211 素数サイコロと合成数サイコロ (1) |
ユーザー | togatoga |
提出日時 | 2015-08-23 16:56:11 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 414 bytes |
コンパイル時間 | 1,225 ms |
コンパイル使用メモリ | 157,532 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-18 12:52:05 |
合計ジャッジ時間 | 1,908 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
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 | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:18:31: warning: ‘%.11451411919191919191919191...’ directive precision out of range [-Wformat-overflow=] 18 | printf("%.1145141191919191919191919191919911111111111111111111Lf\n", (long double)res / 36.0); | ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:18:11: warning: ‘%.11451411919191919191919191...’ directive writing 3 or more bytes into a region of size 9223372036854775807 [-Wformat-overflow=] 18 | printf("%.1145141191919191919191919191919911111111111111111111Lf\n", (long double)res / 36.0); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:18:10: note: assuming directive output of 9223372036854775809 bytes 18 | printf("%.1145141191919191919191919191919911111111111111111111Lf\n", (long double)res / 36.0); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /usr/include/stdio.h:894, from /usr/include/c++/11/cstdio:42, from /usr/include/x86_64-linux-gnu/c++/11/bits/stdc++.h:46, from main.cpp:1: /usr/include/x86_64-linux-gnu/bits/stdio2.h:112:23: note: ‘__printf_chk’ output 5 or more bytes (assuming 9223372036854775811) 112 | return __printf_chk (__USE_FORTIFY_LEVEL - 1, __fmt, __va_arg_pack ()); | ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; int pdice[6] = {2, 3, 5, 7, 11, 13}; int cdice[6] = {4, 6, 8, 9, 10, 12}; int K; int main(){ cin >> K; int res = 0; for (int i = 0; i < 6; i++){ for (int j = 0; j < 6; j++){ int num = pdice[i] * cdice[j]; if (num == K){ res++; } } } printf("%.1145141191919191919191919191919911111111111111111111Lf\n", (long double)res / 36.0); }