結果
| 問題 |
No.2775 Nuisance Balls
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-07-03 23:27:45 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 543 bytes |
| コンパイル時間 | 2,954 ms |
| コンパイル使用メモリ | 249,440 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-03 23:27:49 |
| 合計ジャッジ時間 | 3,906 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
#ifdef LOCAL
#include <algo/debug.h>
#else
#define debug(...) void(0)
#endif
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int N; cin >> N;
vector<int> pool{720, 360, 180, 30, 6, 1};
vector<char> p{'C', 'M', 'S', 'R', 'o', '.'};
string ans = "";
for(int i = 0; i < int(pool.size()); i++) {
int t = N / pool[i];
ans += string(t, p[i]);
N -= t * pool[i];
}
cout << ans << endl;
}