結果
問題 |
No.2775 Nuisance Balls
|
ユーザー |
![]() |
提出日時 | 2025-07-30 00:46:58 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 40 ms / 2,000 ms |
コード長 | 178 bytes |
コンパイル時間 | 382 ms |
コンパイル使用メモリ | 82,648 KB |
実行使用メモリ | 53,536 KB |
最終ジャッジ日時 | 2025-07-30 00:47:01 |
合計ジャッジ時間 | 2,877 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 |
ソースコード
N = int(input()) num = [720,360,180,30,6,1] icon = ["C","M","S","R","o","."] ans = [] for i in range(6): ans.append(icon[i]*(N//num[i])) N %= num[i] print("".join(ans))