結果

問題 No.2775 Nuisance Balls
ユーザー 筆者筆者
提出日時 2024-07-05 00:52:39
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 2,276 bytes
コンパイル時間 5,161 ms
コンパイル使用メモリ 276,976 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 00:52:46
合計ジャッジ時間 5,768 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
#define yes cout << "Yes" << '\n'
#define no cout << "No" << '\n'
#define YES cout << "YES" << '\n'
#define NO cout << "NO" << '\n'
#define OK cout << "OK" << '\n'
#define NG cout << "NG" << '\n'
#define Yes "Yes"
#define No "No"
#define Takahashi cout << "Takahashi" << '\n'
#define Aoki cout << "Aoki" << '\n'
#define minus cout << -1 << '\n'
#define br cout << '\n'
#define nl '\n'
#define sadFace ":("
#define circle 'o'
#define cross 'x'
#define elif else if
#define len(s) (int)s.length()
#define sz size
#define it insert
#define mp make_pair
#define pb push_back
#define eb emplace_back
#define ll long long
#define ull unsigned long long
#define ft first
#define sd second
#define ctz(x) __builtin_ctz(x);
#define rep(i, n) for (int i = 0; i < (n); i++)
#define rep1(i, n) for (int i = 1; i <= (n); i++)
#define MIN(v) *min_element(all(v))
#define MAX(v) *max_element(all(v))
#define all(v) v.begin(), v.end()
#define lla(v) rbegin(v), rend(v)
#define vecTotal(v) accumulate(v.begin(), v.end(), 0)
#define ruisekiwa(v, e) partial_sum(v.begin(), v.end(), back_inserter(e))
using namespace std;
//using namespace atcoder;

template <typename T>
T div_ceil(T a, T b) { // 切り上げ除算
	return (a >= 0 ? (a + b - 1) : a) / b;
}

template <typename T>
T div_floor(T a, T b) { // 切り捨て除算
	return a / b - (a % b < 0);
}

template <typename T>
void grid_input(vector<vector<T>> &v, int h, int w) {
    rep(i,h) {
        rep(j,w) {
            cin >> v[i][j];
        }
    }
}

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

    int a;
    cin >> a;
    vector<int> v = {720,360,180,30,6,1};
    vector<int> ans;
    int i = 0;
    while(i != 6) {
        if(a - v[i] >= 0) {
            a -= v[i];
            ans.pb(i);
        } else {
            i++;
        }
        if(a == 0) break;
    }

    string s;
    for(int j = 0; j < (int)ans.sz(); j++) {
        if(ans[j] == 0) {
            s += 'C';
        } elif(ans[j] == 1) {
            s += 'M';
        } elif(ans[j] == 2) {
            s += 'S';
        } elif(ans[j] == 3) {
            s += 'R';
        } elif(ans[j] == 4) {
            s += 'o';
        } else {
            s += '.';
        }
    }
    cout << s << nl;
}
0