結果

問題 No.499 7進数変換
ユーザー Mcpu3Mcpu3
提出日時 2018-08-28 20:54:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 1,000 ms
コード長 292 bytes
コンパイル時間 2,679 ms
コンパイル使用メモリ 74,024 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-07-18 05:00:12
合計ジャッジ時間 6,119 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
41,728 KB
testcase_01 AC 116 ms
41,372 KB
testcase_02 AC 116 ms
41,368 KB
testcase_03 AC 102 ms
41,468 KB
testcase_04 AC 116 ms
41,420 KB
testcase_05 AC 111 ms
41,228 KB
testcase_06 AC 113 ms
41,528 KB
testcase_07 AC 104 ms
41,244 KB
testcase_08 AC 110 ms
41,432 KB
testcase_09 AC 106 ms
41,216 KB
testcase_10 AC 116 ms
41,480 KB
testcase_11 AC 113 ms
41,272 KB
testcase_12 AC 109 ms
41,132 KB
testcase_13 AC 100 ms
41,088 KB
testcase_14 AC 100 ms
41,656 KB
testcase_15 AC 111 ms
41,252 KB
testcase_16 AC 110 ms
40,988 KB
testcase_17 AC 116 ms
41,364 KB
testcase_18 AC 118 ms
41,108 KB
testcase_19 AC 118 ms
41,696 KB
testcase_20 AC 121 ms
41,428 KB
testcase_21 AC 104 ms
41,212 KB
testcase_22 AC 113 ms
40,972 KB
testcase_23 AC 96 ms
41,324 KB
testcase_24 AC 117 ms
41,324 KB
testcase_25 AC 119 ms
41,120 KB
testcase_26 AC 116 ms
41,360 KB
testcase_27 AC 121 ms
41,324 KB
testcase_28 AC 118 ms
41,544 KB
testcase_29 AC 119 ms
41,272 KB
testcase_30 AC 120 ms
41,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt(),a[]=new int[11],t=0,i;
		sc.close();
		do {
			a[t]=n%7;
			t++;
			n/=7;
		}while(n>0) ;
		for(i=t;i>0;i--) System.out.print(a[i-1]);
	}
}
0