오랜만에 알고리즘 문제를 풀게 되어서 쉬운 문제를 풀어보았다. 처음 보기에는 이 문제도 어렵다고 생각했지만 패턴을 파악하였고 이를 통해 쉽게 해결하였다.
#include <iostream>
using namespace std;
int t, k;
void Input(){
cin>>k;
}
void Solution(){
cout<<k*23<<'\n';
}
void Solve(){
cin>>t;
for(int i=0; i<t; i++){
Input();
Solution();
}
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
Solve();
return 0;
}