結果

問題 No.2775 Nuisance Balls
ユーザー 赤信号
提出日時 2024-06-07 21:34:16
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 4,242 ms
コンパイル使用メモリ 256,356 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-26 07:15:36
合計ジャッジ時間 5,183 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")

#ifdef LOCAL
#include "algo/debug_ver3.hpp"
#else
#define debug(...)
#define debugArr(...)
#endif

#include <bits/stdc++.h>

using namespace std;

int main() {
	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	int n;
	cin >> n;

	string ans;

	ans += string(n / 720, 'C');
	n %= 720;

	ans += string(n / 360, 'M');
	n %= 360;

	ans += string(n / 180, 'S');
	n %= 180;

	ans += string(n / 30, 'R');
	n %= 30;

	ans += string(n / 6, 'o');
	n %= 6;

	ans += string(n / 1, '.');
	n %= 1;

	cout << ans << '\n';
}
0