結果
問題 | No.2775 Nuisance Balls |
ユーザー |
![]() |
提出日時 | 2024-06-07 21:33:13 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 50 ms / 2,000 ms |
コード長 | 156 bytes |
コンパイル時間 | 260 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 51,840 KB |
最終ジャッジ日時 | 2024-12-26 07:11:52 |
合計ジャッジ時間 | 2,178 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 |
ソースコード
n=int(input())s=""s+="C"*(n//720)n%=720s+="M"*(n//360)n%=360s+="S"*(n//180)n%=180s+="R"*(n//30)n%=30s+="o"*(n//6)n%=6s+="."*(n//1)n%=1print(s)