結果

問題 No.2947 Sing a Song
ユーザー katonyonkokatonyonko
提出日時 2024-10-25 22:27:56
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,212 bytes
コンパイル時間 1,153 ms
コンパイル使用メモリ 103,296 KB
実行使用メモリ 10,276 KB
最終ジャッジ日時 2024-10-25 22:28:03
合計ジャッジ時間 6,061 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,276 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 WA -
testcase_05 OLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;

// 拡張ユークリッドの互除法
int ExtGCD(int a, int b, int &x, int &y) {
    if (b == 0) {
        x = 1;
        y = 0;
        return a;
    }
    int d = ExtGCD(b, a % b, y, x);
    y -= (a / b) * x;
    return d;
}

int main() {
    int N;
    cin >> N;
    string S, T;
    cin >> S >> T;
    vector<int> A(N);
    for (int i = 0; i < N; i++) {
        cin >> A[i];
    }
    
    int s = S.size(), t = T.size();
    if (s == t) {
        for (int i = 0; i < N; i++) {
            for (int j = 0; j < A[i] / s; j++) {
                cout << S << " ";
            }
            cout << endl;
        }
    } else {
        int g, x, y;
        g = ExtGCD(s, t, x, y);
        int p = s / g;
        for (int i = 0; i < N; i++) {
            int n = A[i] * y / p;
            int a = A[i] / g * x + t / g * n;
            int b = A[i] / g * y - s / g * n;
            for (int j = 0; j < a; j++) {
                cout << S << " ";
            }
            for (int j = 0; j < b; j++) {
                cout << T << " ";
            }
            cout << endl;
        }
    }
    
    return 0;
}
0