結果
問題 | No.2947 Sing a Song |
ユーザー | daiota |
提出日時 | 2024-10-25 22:49:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 706 bytes |
コンパイル時間 | 1,892 ms |
コンパイル使用メモリ | 168,388 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-25 22:49:21 |
合計ジャッジ時間 | 5,540 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
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 | AC | 7 ms
6,820 KB |
testcase_19 | WA | - |
testcase_20 | AC | 7 ms
6,816 KB |
testcase_21 | WA | - |
testcase_22 | AC | 9 ms
6,816 KB |
testcase_23 | AC | 19 ms
6,820 KB |
testcase_24 | AC | 21 ms
6,820 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> P; #define REP(i,n) for(ll i=0;i<ll(n);i++) ll a[200010]; int main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); ll i,j; ll N; string S,T; cin >> N >> S >> T; for(i=1;i<=N;i++) cin >> a[i]; for(i=1;i<=N;i++){ ll s=S.size(),t=T.size(); ll ok=0,ng=a[i]/s+1; while(ng-ok>1){ ll mid=(ok+ng)/2; ll d=a[i]-s*mid; if(d%t==0 && d>=0) ok=mid; else ng=mid; } REP(j,ok) cout << S << ' '; REP(j,(a[i]-ok*s)/t) cout << T << ' '; cout << endl; } return 0; }