結果

問題 No.841 8/32
ユーザー GetDazeGetDaze
提出日時 2019-07-12 11:32:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 882 bytes
コンパイル時間 2,742 ms
コンパイル使用メモリ 74,992 KB
実行使用メモリ 41,360 KB
最終ジャッジ日時 2024-04-28 14:08:56
合計ジャッジ時間 5,171 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 87 ms
39,612 KB
testcase_02 WA -
testcase_03 AC 110 ms
40,964 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 92 ms
39,836 KB
testcase_07 AC 105 ms
40,872 KB
testcase_08 AC 97 ms
39,920 KB
testcase_09 AC 107 ms
41,120 KB
testcase_10 AC 99 ms
39,576 KB
testcase_11 AC 101 ms
40,960 KB
testcase_12 AC 108 ms
40,980 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 93 ms
39,976 KB
testcase_16 AC 114 ms
41,252 KB
testcase_17 WA -
testcase_18 AC 101 ms
39,808 KB
testcase_19 AC 92 ms
39,824 KB
testcase_20 AC 106 ms
40,512 KB
testcase_21 AC 105 ms
39,968 KB
testcase_22 AC 105 ms
41,176 KB
testcase_23 AC 100 ms
40,096 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