結果

問題 No.744 循環小数N桁目 Easy
ユーザー NewbiekunNewbiekun
提出日時 2019-02-20 16:36:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 3,364 ms
コンパイル使用メモリ 75,376 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-11-06 23:56:01
合計ジャッジ時間 5,417 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,400 KB
testcase_01 AC 119 ms
39,844 KB
testcase_02 AC 130 ms
41,408 KB
testcase_03 AC 132 ms
40,988 KB
testcase_04 AC 129 ms
41,104 KB
testcase_05 AC 131 ms
41,112 KB
testcase_06 AC 116 ms
39,912 KB
testcase_07 AC 130 ms
41,096 KB
testcase_08 AC 129 ms
41,088 KB
testcase_09 AC 115 ms
39,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No744
{
	public static void main(String args[])
	{
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		String sample = "285714";

// n=4なら4%6 = 0..4なので4桁目の"7"
		String ans = sample.substring( (n-1)%6, n%6 );

		System.out.println( ans );
	}
}
0