結果

問題 No.744 循環小数N桁目 Easy
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2019-02-19 18:33:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 2,198 ms
コンパイル使用メモリ 74,508 KB
実行使用メモリ 41,496 KB
最終ジャッジ日時 2024-10-12 13:45:05
合計ジャッジ時間 3,859 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,496 KB
testcase_01 AC 123 ms
41,488 KB
testcase_02 AC 111 ms
40,012 KB
testcase_03 AC 126 ms
41,340 KB
testcase_04 AC 127 ms
41,180 KB
testcase_05 AC 125 ms
41,196 KB
testcase_06 AC 118 ms
40,544 KB
testcase_07 AC 123 ms
41,336 KB
testcase_08 AC 123 ms
41,456 KB
testcase_09 AC 126 ms
41,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        final String NUM = "285714";
        char c = NUM.charAt( (n-1)%6 );
        System.out.println(c);
    }
}
0