結果

問題 No.632 穴埋め門松列
ユーザー denderaKawazudenderaKawazu
提出日時 2018-02-13 23:11:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 1,022 bytes
コンパイル時間 4,021 ms
コンパイル使用メモリ 74,296 KB
実行使用メモリ 54,148 KB
最終ジャッジ日時 2024-12-14 10:05:16
合計ジャッジ時間 5,608 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,148 KB
testcase_01 AC 138 ms
53,828 KB
testcase_02 AC 141 ms
53,836 KB
testcase_03 AC 140 ms
54,008 KB
testcase_04 AC 139 ms
53,992 KB
testcase_05 AC 140 ms
53,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Scanner;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        Scanner in = new Scanner(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        Task solver = new Task();
        solver.solve(1, in, out);
        out.close();
    }

    static class Task {
        public void solve(int testNumber, Scanner in, PrintWriter out) {
            String c1 = in.next();
            String c2 = in.next();
            String c3 = in.next();
            String ans;
            if (c2.equals("?")) {
                ans = "14";
            } else {
                if (c2.equals("3")) ans = "1";
                else ans = "4";
            }
            out.println(ans);
        }

    }
}

0