結果

問題 No.744 循環小数N桁目 Easy
ユーザー nuhehe130nuhehe130
提出日時 2018-10-29 22:07:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 3,483 ms
コンパイル使用メモリ 74,044 KB
実行使用メモリ 41,164 KB
最終ジャッジ日時 2024-04-29 23:23:36
合計ジャッジ時間 5,760 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,096 KB
testcase_01 AC 128 ms
41,144 KB
testcase_02 AC 126 ms
41,072 KB
testcase_03 AC 126 ms
40,976 KB
testcase_04 AC 125 ms
40,888 KB
testcase_05 AC 128 ms
41,128 KB
testcase_06 AC 124 ms
41,164 KB
testcase_07 AC 118 ms
40,020 KB
testcase_08 AC 129 ms
41,156 KB
testcase_09 AC 124 ms
41,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package test;

import java.util.Scanner;

public class test {
	public static void main(String[] args) {
		short b[] = {4,2,8,5,7,1};
		
		Scanner s = new Scanner(System.in);
		
		String string = s.nextLine();
		
		System.out.println(b[Integer.parseInt(string)%6]);
		
		s.close();
		
	}
}
0