結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー kimiyukikimiyuki
提出日時 2016-11-25 15:10:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 457 bytes
コンパイル時間 612 ms
コンパイル使用メモリ 66,048 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 13:26:27
合計ジャッジ時間 14,986 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 146 ms
5,376 KB
testcase_02 TLE -
testcase_03 AC 2 ms
5,376 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 TLE -
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 13 ms
5,376 KB
testcase_13 AC 7 ms
5,376 KB
testcase_14 AC 12 ms
5,376 KB
testcase_15 AC 20 ms
5,376 KB
testcase_16 AC 13 ms
5,376 KB
testcase_17 AC 11 ms
5,376 KB
testcase_18 AC 37 ms
5,376 KB
testcase_19 AC 64 ms
5,376 KB
testcase_20 AC 143 ms
5,376 KB
testcase_21 AC 374 ms
5,376 KB
testcase_22 AC 13 ms
5,376 KB
testcase_23 AC 65 ms
5,376 KB
testcase_24 AC 48 ms
5,376 KB
testcase_25 AC 384 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 94 ms
5,376 KB
testcase_30 AC 458 ms
5,376 KB
testcase_31 TLE -
testcase_32 AC 928 ms
5,376 KB
testcase_33 AC 60 ms
5,376 KB
testcase_34 AC 533 ms
5,376 KB
testcase_35 AC 566 ms
5,376 KB
testcase_36 AC 614 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target "tune=native"
#pragma GCC optimize "O3"
#include <iostream>
using namespace std;
int main() {
    int n, a, b, c; cin >> n >> a >> b >> c;
    int i = n % a, j = n % b, k = n % c;
    int ans = 0;
    do {
        if (i == 0 or j == 0 or k == 0) ++ ans;
        if (i == 0) i = a;
        if (j == 0) j = b;
        if (k == 0) k = c;
        -- i;
        -- j;
        -- k;
    } while (-- n);
    cout << ans << endl;
    return 0;
}
0