結果
問題 | No.316 もっと刺激的なFizzBuzzをください |
ユーザー | haruteru |
提出日時 | 2016-01-25 14:43:34 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,897 bytes |
コンパイル時間 | 585 ms |
コンパイル使用メモリ | 59,832 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-21 16:12:04 |
合計ジャッジ時間 | 1,490 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
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 | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
ソースコード
#include <iostream> #include <algorithm> long long f(long long n1, long long n2) { long long wk1 = n1; long long wk2 = n2; while (1) { if (wk1 == wk2) { break; } if (wk1 < wk2) { wk1 += n1; } else { wk2 += n2; } } return wk1; } int main() { long long N; long long n[3] = {0}; long long cnt = 0; long long d[6] = {0}; std::cin >> N; std::cin >> n[0]; std::cin >> n[1]; std::cin >> n[2]; std::sort(&n[0], &n[3]); for (int i = 0; i < 3; i++) { if (n[i] == 0) { std::cout << -1 << std::endl; return 0; } if (n[i] == 1) { std::cout << N << std::endl; return 0; } } cnt += N / n[0]; cnt += N / n[2]; cnt += N / n[1]; d[0] = n[0]; d[1] = n[1]; d[2] = n[2]; while (1) { if (d[0] > N && d[1] > N && d[2] > N) { break; } if (d[0] == d[1] && d[1] == d[2] && d[2] == d[0]) { break; } std::cout << d[0] << ":" << d[1] << ":" << d[2] << std::endl; d[3] = f(d[0], d[1]); if (d[3] < N) { cnt -= N / d[3]; } d[4] = f(d[1], d[2]); if (d[4] < N && d[3] != d[4]) { cnt -= N / d[4]; } d[5] = f(d[2], d[0]); if (d[5] < N && d[3] != d[5] && d[4] != d[5]) { cnt -= N / d[5]; } d[0] = f(d[3], d[4]); if (d[0] < N) { cnt += N / d[0]; } d[1] = f(d[4], d[5]); if (d[1] < N && d[0] != d[1]) { cnt += N / d[1]; } d[2] = f(d[5], d[3]); if (d[2] < N && d[0] != d[2] && d[1] != d[2]) { cnt += N / d[2]; } } std::cout << cnt << std::endl; return 0; }