X K ký tự
Submit solution
Points:
1 (partial)
Time limit:
3.0s
Memory limit:
977M
Author:
Problem type
Allowed languages
Ada, Assembly, Awk, C, C++, C11, CLANG, CLANGX, Classical, COBOL, Coffee, CSC, D lang, DART, F95, FORTH, Fortrn, GAS32, GO, Haskell, Itercal, Java, kotlin, LEAN, LISP, LUA, MONOVB, Nasm, OCAML, Pascal, Perl, php, PIKE, prolog, Pypy, Python, Ruby 2, RUST, Scala, SCM, SED, SWIFT, TCL, TUR, V8JS, VB, ZIG
Yêu cầu của bài toán rất đơn giản như sau:
Dòng đầu là số testcase:
testcase dòng tiếp theo lần lượt gồm:
Một số K (1 <= K <= 100)
Một chuỗi S không quá 1000 ký tự
Bạn hãy giúp Han tạo ra một chuỗi lặp lại K lần từng ký tự một của S!
VD như sau:
Input:
2
3 abc
1 def
Ouput:
aaabbbccc
def
Comments
hic code chạy bthg chs nộp sai :(
ai cho em xin code tham khảo bài này k ạ cứ đến bài ký tự là sai tùm lum huhu
chú ý đọc file
include <iostream>
using namespace std;
int main() { int test; cin >> test; while(test--){ int k; string s; cin >> k >> s; for(int i = 0; i < s.size(); i ++){ for(int j = 0; j < k; j++) cout << s[i]; } cout << endl; } }