結果

問題 No.1185 完全な3の倍数
ユーザー RISE70226821RISE70226821
提出日時 2020-08-25 13:14:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 824 bytes
コンパイル時間 1,737 ms
コンパイル使用メモリ 73,892 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-11-24 09:49:27
合計ジャッジ時間 7,769 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,712 KB
testcase_01 AC 106 ms
52,952 KB
testcase_02 AC 117 ms
53,928 KB
testcase_03 AC 123 ms
53,800 KB
testcase_04 AC 113 ms
53,092 KB
testcase_05 AC 128 ms
54,136 KB
testcase_06 AC 118 ms
53,520 KB
testcase_07 AC 112 ms
52,936 KB
testcase_08 AC 124 ms
53,784 KB
testcase_09 AC 108 ms
53,596 KB
testcase_10 AC 116 ms
53,652 KB
testcase_11 AC 106 ms
53,020 KB
testcase_12 AC 121 ms
53,740 KB
testcase_13 AC 106 ms
52,988 KB
testcase_14 AC 116 ms
52,980 KB
testcase_15 AC 120 ms
52,888 KB
testcase_16 AC 111 ms
52,772 KB
testcase_17 AC 121 ms
54,080 KB
testcase_18 AC 121 ms
53,908 KB
testcase_19 AC 115 ms
52,512 KB
testcase_20 AC 133 ms
54,088 KB
testcase_21 AC 121 ms
52,904 KB
testcase_22 AC 117 ms
53,484 KB
testcase_23 AC 134 ms
54,152 KB
testcase_24 AC 133 ms
53,904 KB
testcase_25 AC 120 ms
53,992 KB
testcase_26 AC 121 ms
53,904 KB
testcase_27 AC 129 ms
54,124 KB
testcase_28 AC 113 ms
52,652 KB
testcase_29 AC 112 ms
52,640 KB
testcase_30 AC 122 ms
53,596 KB
testcase_31 AC 115 ms
53,784 KB
testcase_32 AC 112 ms
52,928 KB
testcase_33 AC 113 ms
53,160 KB
testcase_34 AC 114 ms
52,772 KB
testcase_35 AC 128 ms
54,232 KB
testcase_36 AC 114 ms
52,888 KB
testcase_37 AC 116 ms
52,916 KB
testcase_38 AC 125 ms
54,148 KB
testcase_39 AC 116 ms
53,996 KB
testcase_40 AC 117 ms
53,956 KB
testcase_41 AC 118 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		// 入力
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		
		// カウント
		int count = 0;
		if(N < 100){
			count = N / 3 - 3;
		}else{
			count = 30;
			int id = 16;
			long num = baseConvert(id) * 3L;
			while(num <= N){
				count++;
				id++;
				num = baseConvert(id) * 3L;
			}
		}
		
		// 出力
		System.out.println(count);
	}

	// 10進数→4進数変換関数
	public static int baseConvert(int num){
		int output = 0;
		int digit = 1;
		while(num > 0){
			int amari = num % 4;
			output += amari * digit;
			num = num / 4;
			digit *= 10;
		}
		
		return output;
	}

}
0