結果

問題 No.2775 Nuisance Balls
ユーザー An_On
提出日時 2025-02-14 17:33:16
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2025-02-14 17:33:19
合計ジャッジ時間 2,863 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #


def Main():
    n=int(input())
    C=n//720
    n%=720
    M=n//360
    n%=360
    S=n//180
    n%=180
    R=n//30
    n%=30
    o=n//6
    n%=6

    print("C"*C+"M"*M+"S"*S+"R"*R+"o"*o+"."*n)
        


Main()
0