結果
問題 | No.220 世界のなんとか2 |
ユーザー | tamiflu__shrine |
提出日時 | 2015-06-22 19:00:31 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,029 bytes |
コンパイル時間 | 565 ms |
コンパイル使用メモリ | 59,684 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-07 16:38:42 |
合計ジャッジ時間 | 1,352 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 1 ms
6,944 KB |
ソースコード
#include <iostream> #include <math.h> using namespace std; int main(void){ unsigned long long p; //cin >> p; p = 19; unsigned long long result1 = 0; unsigned long long result2 = 0; unsigned long long result3 = 0; // 3の倍数 result1 = (unsigned long long)(powl(10, p) / 3); // 3の付く数 unsigned long long init = 1; for (int i = 1; i <= p; i++) { if (i == 1) { result2 = init; } else { result2 = init * 9 + powl(10, i - 1); init = result2; } } // 3の倍数かつ3の付く数 init = 1; for (int i = 1; i <= p; i++) { if (i == 1) { result3 = init; } else { result3 = init * 3 + (init - 1) * 6 + (unsigned long long)(powl(10, i - 1) / 3) + 1; init = result3; } } // 出力 unsigned long long result = result1 + result2 - result3; printf("%llu\n", result); return 0; }