結果

問題 No.746 7の倍数
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-20 00:20:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 345 bytes
コンパイル時間 2,781 ms
コンパイル使用メモリ 74,400 KB
実行使用メモリ 64,528 KB
最終ジャッジ日時 2024-11-18 23:25:03
合計ジャッジ時間 10,632 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 109 ms
53,204 KB
testcase_02 AC 128 ms
54,088 KB
testcase_03 AC 493 ms
64,380 KB
testcase_04 AC 172 ms
54,512 KB
testcase_05 AC 240 ms
58,540 KB
testcase_06 AC 359 ms
63,952 KB
testcase_07 AC 320 ms
63,196 KB
testcase_08 AC 348 ms
63,952 KB
testcase_09 AC 329 ms
63,520 KB
testcase_10 AC 240 ms
58,576 KB
testcase_11 AC 429 ms
64,528 KB
testcase_12 AC 496 ms
64,264 KB
testcase_13 AC 407 ms
64,180 KB
testcase_14 AC 431 ms
64,208 KB
testcase_15 AC 404 ms
64,404 KB
testcase_16 AC 435 ms
64,260 KB
testcase_17 AC 411 ms
64,224 KB
testcase_18 AC 419 ms
64,104 KB
testcase_19 AC 398 ms
64,260 KB
testcase_20 AC 308 ms
63,296 KB
testcase_21 AC 262 ms
62,848 KB
testcase_22 AC 458 ms
64,288 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};
		System.out.print("0.");
		for(int i=0;i<n;i++){
			System.out.print(String.valueOf(a[i%6]));
		}
		System.out.println();
	}
}
0