結果

問題 No.2775 Nuisance Balls
ユーザー 紅鮭紅鮭
提出日時 2024-06-07 22:04:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 53,852 KB
最終ジャッジ日時 2024-06-07 22:04:22
合計ジャッジ時間 2,034 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,500 KB
testcase_01 AC 39 ms
52,248 KB
testcase_02 AC 39 ms
52,580 KB
testcase_03 AC 38 ms
53,128 KB
testcase_04 AC 39 ms
53,852 KB
testcase_05 AC 40 ms
52,344 KB
testcase_06 AC 40 ms
52,128 KB
testcase_07 AC 39 ms
53,008 KB
testcase_08 AC 39 ms
52,240 KB
testcase_09 AC 41 ms
52,396 KB
testcase_10 AC 38 ms
52,332 KB
testcase_11 AC 37 ms
53,304 KB
testcase_12 AC 37 ms
53,040 KB
testcase_13 AC 37 ms
52,736 KB
testcase_14 AC 40 ms
52,272 KB
testcase_15 AC 38 ms
52,740 KB
testcase_16 AC 38 ms
51,944 KB
testcase_17 AC 38 ms
52,524 KB
testcase_18 AC 39 ms
52,896 KB
testcase_19 AC 42 ms
53,308 KB
testcase_20 AC 38 ms
51,868 KB
testcase_21 AC 37 ms
53,292 KB
testcase_22 AC 38 ms
52,872 KB
testcase_23 AC 38 ms
52,676 KB
testcase_24 AC 38 ms
53,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
l=[720,360,180,30,6,1]
s=["C","M","S","R","o","."]
ans=[]
while n!=0:
    for i,j in enumerate(l):
        if n>=j:
            n-=j
            ans.append(s[i])
            break
print(*ans,sep="")
    
0