結果

問題 No.499 7進数変換
ユーザー fal_rndfal_rnd
提出日時 2017-04-07 22:20:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 197 bytes
コンパイル時間 2,400 ms
コンパイル使用メモリ 72,584 KB
実行使用メモリ 56,572 KB
最終ジャッジ日時 2023-09-23 00:08:31
合計ジャッジ時間 7,418 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
55,988 KB
testcase_01 AC 122 ms
56,572 KB
testcase_02 AC 121 ms
55,864 KB
testcase_03 AC 120 ms
56,148 KB
testcase_04 AC 122 ms
55,792 KB
testcase_05 AC 120 ms
55,924 KB
testcase_06 AC 123 ms
56,040 KB
testcase_07 AC 123 ms
55,920 KB
testcase_08 AC 125 ms
56,160 KB
testcase_09 AC 124 ms
56,344 KB
testcase_10 AC 120 ms
55,764 KB
testcase_11 AC 122 ms
55,496 KB
testcase_12 AC 122 ms
55,680 KB
testcase_13 AC 124 ms
56,124 KB
testcase_14 AC 126 ms
56,184 KB
testcase_15 AC 122 ms
56,108 KB
testcase_16 AC 123 ms
56,168 KB
testcase_17 AC 122 ms
55,868 KB
testcase_18 AC 120 ms
55,984 KB
testcase_19 AC 120 ms
56,116 KB
testcase_20 AC 121 ms
56,104 KB
testcase_21 AC 126 ms
56,028 KB
testcase_22 AC 121 ms
56,200 KB
testcase_23 AC 120 ms
55,512 KB
testcase_24 AC 124 ms
55,788 KB
testcase_25 AC 124 ms
55,492 KB
testcase_26 AC 124 ms
56,056 KB
testcase_27 AC 121 ms
55,728 KB
testcase_28 AC 122 ms
55,904 KB
testcase_29 AC 122 ms
56,092 KB
testcase_30 AC 122 ms
55,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	
	static final Scanner s=new Scanner(System.in);
	
	public static void main(String[] __){
		System.out.println(Integer.toString(s.nextInt(),7));
	}
}
0