結果
問題 | No.478 一般門松列列 |
ユーザー | Grenache |
提出日時 | 2017-01-27 22:41:26 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 193 ms / 2,000 ms |
コード長 | 924 bytes |
コンパイル時間 | 3,584 ms |
コンパイル使用メモリ | 77,068 KB |
実行使用メモリ | 42,892 KB |
最終ジャッジ日時 | 2024-12-23 16:28:27 |
合計ジャッジ時間 | 10,581 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
import java.io.*; import java.util.*; public class Main_yukicoder478 { private static Scanner sc; private static Printer pr; private static void solve() { int n = sc.nextInt(); int k = sc.nextInt(); int cnt = n - k - 2; if (cnt == 0) { for (int i = 0; i < n; i++) { if (i > 0) { pr.print(' '); } pr.print(0); } pr.println(); } else { int[] d = {0, 2, 1, 3}; for (int i = 0; i < n; i++) { if (i > 0) { pr.print(' '); } if (i < cnt + 2) { pr.print(d[i % 4]); } else { pr.print(d[(cnt + 1) % 4]); } } pr.println(); } } // --------------------------------------------------- public static void main(String[] args) { sc = new Scanner(System.in); pr = new Printer(System.out); solve(); pr.close(); sc.close(); } private static class Printer extends PrintWriter { Printer(PrintStream out) { super(out); } } }