結果

問題 No.499 7進数変換
ユーザー yagi2yagi2
提出日時 2017-04-14 10:18:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 242 bytes
コンパイル時間 2,025 ms
コンパイル使用メモリ 74,812 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-07-18 15:13:04
合計ジャッジ時間 6,748 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
39,996 KB
testcase_01 AC 115 ms
41,016 KB
testcase_02 AC 115 ms
40,904 KB
testcase_03 AC 110 ms
40,944 KB
testcase_04 AC 113 ms
41,164 KB
testcase_05 AC 104 ms
39,932 KB
testcase_06 AC 102 ms
40,012 KB
testcase_07 AC 108 ms
39,972 KB
testcase_08 AC 105 ms
40,064 KB
testcase_09 AC 105 ms
40,136 KB
testcase_10 AC 114 ms
40,888 KB
testcase_11 AC 101 ms
40,268 KB
testcase_12 AC 109 ms
40,948 KB
testcase_13 AC 99 ms
40,268 KB
testcase_14 AC 110 ms
41,036 KB
testcase_15 AC 109 ms
41,088 KB
testcase_16 AC 111 ms
40,600 KB
testcase_17 AC 104 ms
39,872 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long  N = Long.parseLong(sc.next());
        System.out.println((N % 7) + (N / 7 * 10));
    }
}
0