結果

問題 No.841 8/32
ユーザー GetDazeGetDaze
提出日時 2019-07-12 11:32:34
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 882 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 74,124 KB
実行使用メモリ 41,672 KB
最終ジャッジ日時 2024-11-17 06:38:05
合計ジャッジ時間 6,547 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 130 ms
41,252 KB
testcase_02 WA -
testcase_03 AC 130 ms
41,116 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 133 ms
41,308 KB
testcase_07 AC 128 ms
41,244 KB
testcase_08 AC 128 ms
41,600 KB
testcase_09 AC 128 ms
41,056 KB
testcase_10 AC 133 ms
41,460 KB
testcase_11 AC 131 ms
40,972 KB
testcase_12 AC 129 ms
41,672 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 129 ms
41,588 KB
testcase_16 AC 132 ms
41,104 KB
testcase_17 WA -
testcase_18 AC 129 ms
41,096 KB
testcase_19 AC 129 ms
41,464 KB
testcase_20 AC 133 ms
41,272 KB
testcase_21 AC 134 ms
41,240 KB
testcase_22 AC 134 ms
41,308 KB
testcase_23 AC 131 ms
41,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);

        // int 1つ分を読み込む
        String S1 = sc.next();
        // int 1つ分を読み込む
        String S2 = sc.next();

        // 標準出力に書き出す。
        if(S1.equals("Sat")||S2.equals("Sun"))
        {
            if(S2.equals("Sat")||S2.equals("Sun"))
            {
                System.out.println("8/33");
            }
            else
            {
                System.out.println("8/32");
            }
        }
        else if(S2.equals("Sat")||S2.equals("Sun"))
        {
            System.out.println("8/32");
        }
        else
        {
            System.out.println("8/31");
        }
    }
}
0