結果
問題 | No.2947 Sing a Song |
ユーザー | MM |
提出日時 | 2024-10-25 21:36:51 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 62 ms / 2,000 ms |
コード長 | 1,053 bytes |
コンパイル時間 | 6,945 ms |
コンパイル使用メモリ | 337,868 KB |
実行使用メモリ | 8,320 KB |
最終ジャッジ日時 | 2024-10-25 21:37:05 |
合計ジャッジ時間 | 9,351 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 3 ms
6,820 KB |
testcase_04 | AC | 6 ms
6,820 KB |
testcase_05 | AC | 3 ms
6,816 KB |
testcase_06 | AC | 4 ms
6,820 KB |
testcase_07 | AC | 4 ms
6,824 KB |
testcase_08 | AC | 5 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 3 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 7 ms
6,820 KB |
testcase_13 | AC | 8 ms
6,820 KB |
testcase_14 | AC | 3 ms
6,816 KB |
testcase_15 | AC | 4 ms
6,820 KB |
testcase_16 | AC | 3 ms
6,820 KB |
testcase_17 | AC | 5 ms
6,816 KB |
testcase_18 | AC | 8 ms
6,824 KB |
testcase_19 | AC | 8 ms
6,820 KB |
testcase_20 | AC | 17 ms
8,320 KB |
testcase_21 | AC | 5 ms
6,824 KB |
testcase_22 | AC | 10 ms
6,820 KB |
testcase_23 | AC | 24 ms
6,820 KB |
testcase_24 | AC | 26 ms
6,820 KB |
testcase_25 | AC | 23 ms
6,820 KB |
testcase_26 | AC | 26 ms
6,816 KB |
testcase_27 | AC | 62 ms
8,192 KB |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> #define chmin(x,y) (x) = min((x),(y)) #define chmax(x,y) (x) = max((x),(y)) using namespace std; using namespace atcoder; using ll = long long; const ll mod = 998244353; using mint = modint998244353; using Graph = vector<vector<pair<int,ll>>>; const vector<int> dx = {1,0,-1,0}, dy = {0,1,0,-1}; pair<int,int> song(int a, int b, int n){ for(int x = int(n/a); x >= 0; x--){ int y = n - a*x; if(y % b == 0) return(make_pair(x,y/b)); } return(make_pair(-1,-1)); } int main(){ // input int N; string S,T; cin >> N >> S >> T; vector<int> A(N); for(int i = 0; i < N; i++) cin >> A[i]; vector<vector<string>> ans(N); for(int i = 0; i < N; i++){ auto [x,y] = song(S.size(),T.size(),A[i]); for(int j = 0; j < x; j++) ans[i].push_back(S); for(int j = 0; j < y; j++) ans[i].push_back(T); } // output for(int i = 0; i < N; i++){ for(int j = 0; j < ans[i].size(); j++){ if(j) cout << " "; cout << ans[i][j]; } cout << endl; } }