結果

問題 No.2775 Nuisance Balls
ユーザー ks2mks2m
提出日時 2024-06-07 21:22:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 2,561 ms
コンパイル使用メモリ 74,772 KB
実行使用メモリ 54,532 KB
最終ジャッジ日時 2024-06-07 21:22:51
合計ジャッジ時間 6,065 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,224 KB
testcase_01 AC 127 ms
54,252 KB
testcase_02 AC 147 ms
54,068 KB
testcase_03 AC 124 ms
54,532 KB
testcase_04 AC 127 ms
54,012 KB
testcase_05 AC 126 ms
54,108 KB
testcase_06 AC 123 ms
54,160 KB
testcase_07 AC 126 ms
53,976 KB
testcase_08 AC 129 ms
54,060 KB
testcase_09 AC 127 ms
54,196 KB
testcase_10 AC 124 ms
53,928 KB
testcase_11 AC 130 ms
54,040 KB
testcase_12 AC 125 ms
54,136 KB
testcase_13 AC 126 ms
54,100 KB
testcase_14 AC 129 ms
53,968 KB
testcase_15 AC 125 ms
54,032 KB
testcase_16 AC 135 ms
53,928 KB
testcase_17 AC 125 ms
54,216 KB
testcase_18 AC 124 ms
53,868 KB
testcase_19 AC 123 ms
53,968 KB
testcase_20 AC 126 ms
53,868 KB
testcase_21 AC 107 ms
52,964 KB
testcase_22 AC 126 ms
53,972 KB
testcase_23 AC 126 ms
54,028 KB
testcase_24 AC 122 ms
52,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		sc.close();

		StringBuilder sb = new StringBuilder();
		while (n >= 720) {
			n -= 720;
			sb.append("C");
		}
		while (n >= 360) {
			n -= 360;
			sb.append("M");
		}
		while (n >= 180) {
			n -= 180;
			sb.append("S");
		}
		while (n >= 30) {
			n -= 30;
			sb.append("R");
		}
		while (n >= 6) {
			n -= 6;
			sb.append("o");
		}
		while (n > 0) {
			n -= 1;
			sb.append(".");
		}
		System.out.println(sb.toString());
	}
}
0