結果
問題 | No.2947 Sing a Song |
ユーザー | daiota |
提出日時 | 2024-10-25 22:41:35 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 687 bytes |
コンパイル時間 | 1,759 ms |
コンパイル使用メモリ | 167,204 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-10-25 22:41:41 |
合計ジャッジ時間 | 5,353 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 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 | 8 ms
6,816 KB |
testcase_19 | WA | - |
testcase_20 | AC | 7 ms
6,824 KB |
testcase_21 | WA | - |
testcase_22 | AC | 10 ms
6,820 KB |
testcase_23 | AC | 19 ms
6,824 KB |
testcase_24 | AC | 20 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(int i=0;i<int(n);i++) int a[200010]; int main(){ cin.tie(nullptr); ios_base::sync_with_stdio(false); int i,j; int N; string S,T; cin >> N >> S >> T; for(i=1;i<=N;i++) cin >> a[i]; for(i=1;i<=N;i++){ int s=S.size(),t=T.size(); int ok=0,ng=a[i]/s+1; while(ng-ok>1){ int mid=(ok+ng)/2; if((a[i]-s*mid)%t==0) ok=mid; else ng=mid; } REP(j,ok) cout << S << ' '; REP(j,(a[i]-ok*s)/t) cout << T << ' '; cout << endl; } return 0; }