結果
問題 | No.2775 Nuisance Balls |
ユーザー |
![]() |
提出日時 | 2024-06-07 21:49:01 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 51 ms / 2,000 ms |
コード長 | 191 bytes |
コンパイル時間 | 202 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 51,840 KB |
最終ジャッジ日時 | 2024-12-26 07:43:47 |
合計ジャッジ時間 | 2,488 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 |
ソースコード
N = int(input())ans = []x = Nfor c, t in [('C', 720), ('M', 360), ('S', 180), ('R', 30), ('o', 6), ('.', 1)]:d, m = divmod(x, t)ans.append(c * d)x = mprint(''.join(ans))