結果

問題 No.744 循環小数N桁目 Easy
ユーザー tentententen
提出日時 2020-11-12 11:38:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 1,644 ms
コンパイル使用メモリ 74,456 KB
実行使用メモリ 41,252 KB
最終ジャッジ日時 2024-07-22 19:09:40
合計ジャッジ時間 3,314 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
40,028 KB
testcase_01 AC 103 ms
41,240 KB
testcase_02 AC 105 ms
40,940 KB
testcase_03 AC 109 ms
40,052 KB
testcase_04 AC 105 ms
40,936 KB
testcase_05 AC 101 ms
40,660 KB
testcase_06 AC 105 ms
40,952 KB
testcase_07 AC 105 ms
41,152 KB
testcase_08 AC 95 ms
40,804 KB
testcase_09 AC 106 ms
41,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt() - 1;
        int[] arr = new int[]{2, 8, 5, 7, 1, 4};
        System.out.println(arr[n % arr.length]);
    }
}
0