結果
問題 | No.2947 Sing a Song |
ユーザー | liveworldlike |
提出日時 | 2024-10-25 22:09:19 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 14 ms / 2,000 ms |
コード長 | 731 bytes |
コンパイル時間 | 649 ms |
コンパイル使用メモリ | 78,468 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-25 22:09:56 |
合計ジャッジ時間 | 3,730 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 25 |
ソースコード
#include <cstdint> #include <cstdio> #include <iostream> #include <string> #pragma GCC optimize("O3") using namespace std; typedef int64_t ll; const ll MOD = 1000000007; const ll MOD2 = 998244353; void solve() { ll n; scanf("%ld", &n); string s, t; cin >> s >> t; ll T = t.size(), S = s.size(); auto print = [&](ll x) { ll a; for (a = x / S; (x - a * S) % T; a--) ; ll b = (x - a * S) / T; for (ll i = 0; i < a; i++) { printf("%s ", s.c_str()); } for (ll i = 0; i < b; i++) { printf("%s ", t.c_str()); } printf("\n"); }; for (ll i = 0; i < n; i++) { ll x; scanf("%ld", &x); print(x); } } int main() { cout.tie(NULL); cin.tie(NULL); solve(); }