結果

問題 No.2775 Nuisance Balls
ユーザー kusagame12kusagame12
提出日時 2024-06-12 17:07:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 1,214 bytes
コンパイル時間 2,569 ms
コンパイル使用メモリ 77,396 KB
実行使用メモリ 54,716 KB
最終ジャッジ日時 2024-06-12 17:07:10
合計ジャッジ時間 7,603 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,056 KB
testcase_01 AC 132 ms
54,272 KB
testcase_02 AC 132 ms
53,924 KB
testcase_03 AC 132 ms
54,020 KB
testcase_04 AC 133 ms
53,944 KB
testcase_05 AC 132 ms
53,968 KB
testcase_06 AC 137 ms
54,032 KB
testcase_07 AC 132 ms
53,976 KB
testcase_08 AC 119 ms
54,716 KB
testcase_09 AC 131 ms
54,252 KB
testcase_10 AC 131 ms
53,768 KB
testcase_11 AC 132 ms
53,792 KB
testcase_12 AC 132 ms
53,752 KB
testcase_13 AC 133 ms
53,928 KB
testcase_14 AC 160 ms
53,920 KB
testcase_15 AC 131 ms
53,800 KB
testcase_16 AC 132 ms
54,044 KB
testcase_17 AC 132 ms
53,612 KB
testcase_18 AC 131 ms
53,892 KB
testcase_19 AC 136 ms
53,964 KB
testcase_20 AC 131 ms
53,660 KB
testcase_21 AC 133 ms
53,792 KB
testcase_22 AC 145 ms
54,024 KB
testcase_23 AC 131 ms
54,160 KB
testcase_24 AC 117 ms
52,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        StringBuilder sb = new StringBuilder();

        while(n > 0) {
            String str = "";
            int cnt = 0;
            if(n / 720 >= 1){
                str = "C";
                cnt = n / 720;
                n = n - (cnt * 720);
            }else if(n / 360 >= 1){
                str = "M";
                cnt = n / 360;
                n = n - (cnt * 360);
            }else if(n / 180 >= 1){
                str = "S";
                cnt = n / 180;
                n = n - (cnt * 180);
            }else if(n / 30 >= 1){
                str = "R";
                cnt = n / 30;
                n = n - (cnt * 30);
            }else if(n / 6 >= 1){
                str = "o";
                cnt = n / 6;
                n = n - (cnt * 6);
            }else{
                str = ".";
                cnt = n;
                n = 0;
            }
            for (int i=0; i<cnt; i++) {
                sb.append(str);
            }
        }
        
        System.out.println(sb);
    }	

}
0