結果

問題 No.499 7進数変換
ユーザー losiz17losiz17
提出日時 2017-04-21 16:25:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 1,000 ms
コード長 268 bytes
コンパイル時間 3,671 ms
コンパイル使用メモリ 75,392 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-07-20 05:04:36
合計ジャッジ時間 7,834 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
39,964 KB
testcase_01 AC 113 ms
40,968 KB
testcase_02 AC 112 ms
40,804 KB
testcase_03 AC 113 ms
41,168 KB
testcase_04 AC 110 ms
41,456 KB
testcase_05 AC 107 ms
40,936 KB
testcase_06 AC 114 ms
41,048 KB
testcase_07 AC 110 ms
41,104 KB
testcase_08 AC 109 ms
41,128 KB
testcase_09 AC 108 ms
40,836 KB
testcase_10 AC 100 ms
40,056 KB
testcase_11 AC 109 ms
40,780 KB
testcase_12 AC 109 ms
41,144 KB
testcase_13 AC 113 ms
41,240 KB
testcase_14 AC 97 ms
40,272 KB
testcase_15 AC 112 ms
41,020 KB
testcase_16 AC 97 ms
39,728 KB
testcase_17 AC 95 ms
40,200 KB
testcase_18 AC 109 ms
40,844 KB
testcase_19 AC 114 ms
41,108 KB
testcase_20 AC 113 ms
41,144 KB
testcase_21 AC 97 ms
39,672 KB
testcase_22 AC 114 ms
41,048 KB
testcase_23 AC 118 ms
41,016 KB
testcase_24 AC 118 ms
41,108 KB
testcase_25 AC 116 ms
40,848 KB
testcase_26 AC 117 ms
41,128 KB
testcase_27 AC 99 ms
40,252 KB
testcase_28 AC 112 ms
41,268 KB
testcase_29 AC 110 ms
40,736 KB
testcase_30 AC 112 ms
41,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class henkan7 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		
		Scanner sc = new Scanner (System.in);
		
		
		Long N = Long.parseLong(sc.next());
		
		System.out.println(Long.toString(N,7));

	}

}
0