結果
問題 | No.478 一般門松列列 |
ユーザー | crazybbb3 |
提出日時 | 2017-01-31 09:23:59 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 105 ms / 2,000 ms |
コード長 | 1,994 bytes |
コンパイル時間 | 2,247 ms |
コンパイル使用メモリ | 77,112 KB |
実行使用メモリ | 40,588 KB |
最終ジャッジ日時 | 2024-06-06 08:19:49 |
合計ジャッジ時間 | 5,933 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
36,944 KB |
testcase_01 | AC | 50 ms
36,820 KB |
testcase_02 | AC | 51 ms
36,428 KB |
testcase_03 | AC | 52 ms
36,832 KB |
testcase_04 | AC | 51 ms
36,848 KB |
testcase_05 | AC | 49 ms
36,996 KB |
testcase_06 | AC | 50 ms
36,864 KB |
testcase_07 | AC | 51 ms
37,140 KB |
testcase_08 | AC | 51 ms
37,004 KB |
testcase_09 | AC | 51 ms
36,912 KB |
testcase_10 | AC | 52 ms
36,864 KB |
testcase_11 | AC | 96 ms
39,876 KB |
testcase_12 | AC | 96 ms
40,568 KB |
testcase_13 | AC | 100 ms
39,104 KB |
testcase_14 | AC | 104 ms
40,588 KB |
testcase_15 | AC | 98 ms
40,060 KB |
testcase_16 | AC | 88 ms
38,540 KB |
testcase_17 | AC | 101 ms
40,288 KB |
testcase_18 | AC | 98 ms
39,248 KB |
testcase_19 | AC | 105 ms
40,008 KB |
testcase_20 | AC | 99 ms
40,032 KB |
testcase_21 | AC | 100 ms
40,024 KB |
testcase_22 | AC | 93 ms
38,656 KB |
testcase_23 | AC | 94 ms
38,700 KB |
testcase_24 | AC | 95 ms
39,732 KB |
testcase_25 | AC | 102 ms
39,756 KB |
testcase_26 | AC | 82 ms
37,860 KB |
testcase_27 | AC | 81 ms
37,936 KB |
testcase_28 | AC | 62 ms
37,156 KB |
testcase_29 | AC | 57 ms
36,932 KB |
testcase_30 | AC | 94 ms
39,356 KB |
testcase_31 | AC | 92 ms
38,428 KB |
testcase_32 | AC | 87 ms
38,992 KB |
testcase_33 | AC | 89 ms
38,344 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.*; public class Main { void solve() throws IOException { int n = ni(), k = ni(); int[] a = {1, 3, 0, 2}; int[] ans = new int[n]; for (int i = 0; i < n; i++) { if (i >= n - k) { ans[i] = a[(n - k - 1) % 4]; } else { ans[i] = a[i % 4]; } } for (int i = 0; i < n; i++) { if (i > 0) out.print(" "); out.print(ans[i]); } out.println(); } String ns() throws IOException { while (!tok.hasMoreTokens()) { tok = new StringTokenizer(in.readLine(), " "); } return tok.nextToken(); } int ni() throws IOException { return Integer.parseInt(ns()); } long nl() throws IOException { return Long.parseLong(ns()); } double nd() throws IOException { return Double.parseDouble(ns()); } String[] nsa(int n) throws IOException { String[] res = new String[n]; for (int i = 0; i < n; i++) { res[i] = ns(); } return res; } int[] nia(int n) throws IOException { int[] res = new int[n]; for (int i = 0; i < n; i++) { res[i] = ni(); } return res; } long[] nla(int n) throws IOException { long[] res = new long[n]; for (int i = 0; i < n; i++) { res[i] = nl(); } return res; } static BufferedReader in; static PrintWriter out; static StringTokenizer tok; public static void main(String[] args) throws IOException { in = new BufferedReader(new InputStreamReader(System.in)); out = new PrintWriter(System.out); tok = new StringTokenizer(""); Main main = new Main(); main.solve(); out.close(); } }