結果

問題 No.746 7の倍数
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-20 00:21:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 510 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 2,446 ms
コンパイル使用メモリ 74,656 KB
実行使用メモリ 53,568 KB
最終ジャッジ日時 2024-11-18 23:25:31
合計ジャッジ時間 10,535 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,384 KB
testcase_01 AC 106 ms
41,136 KB
testcase_02 AC 124 ms
41,088 KB
testcase_03 AC 499 ms
52,564 KB
testcase_04 AC 166 ms
41,936 KB
testcase_05 AC 237 ms
47,040 KB
testcase_06 AC 352 ms
52,300 KB
testcase_07 AC 307 ms
51,248 KB
testcase_08 AC 358 ms
52,476 KB
testcase_09 AC 322 ms
51,324 KB
testcase_10 AC 240 ms
46,628 KB
testcase_11 AC 436 ms
53,552 KB
testcase_12 AC 510 ms
52,636 KB
testcase_13 AC 395 ms
52,772 KB
testcase_14 AC 419 ms
53,272 KB
testcase_15 AC 412 ms
52,768 KB
testcase_16 AC 406 ms
53,568 KB
testcase_17 AC 409 ms
52,684 KB
testcase_18 AC 447 ms
52,736 KB
testcase_19 AC 376 ms
53,152 KB
testcase_20 AC 319 ms
51,416 KB
testcase_21 AC 259 ms
49,664 KB
testcase_22 AC 451 ms
52,844 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[]={1,4,2,8,5,7};
		if(n==0){
			System.out.print(0);
			return;
		}
		System.out.print("0.");
		for(int i=0;i<n;i++){
			System.out.print(String.valueOf(a[i%6]));
		}
		System.out.println();
	}
}
0