結果

問題 No.744 循環小数N桁目 Easy
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-19 21:29:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 1,747 ms
コンパイル使用メモリ 74,340 KB
実行使用メモリ 54,140 KB
最終ジャッジ日時 2024-11-18 19:58:59
合計ジャッジ時間 3,437 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,888 KB
testcase_01 AC 112 ms
52,100 KB
testcase_02 AC 111 ms
51,568 KB
testcase_03 AC 116 ms
52,356 KB
testcase_04 AC 106 ms
51,104 KB
testcase_05 AC 115 ms
52,264 KB
testcase_06 AC 117 ms
54,140 KB
testcase_07 AC 116 ms
52,132 KB
testcase_08 AC 104 ms
50,856 KB
testcase_09 AC 103 ms
51,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int n=scanner.nextInt();
		int a[]={2,8,5,7,1,4};
		System.out.println(a[(n-1)%6]);
	}
}

0