結果

問題 No.841 8/32
ユーザー d07ki3bq1uzd07ki3bq1uz
提出日時 2019-12-08 22:26:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 706 bytes
コンパイル時間 1,940 ms
コンパイル使用メモリ 74,416 KB
実行使用メモリ 55,768 KB
最終ジャッジ日時 2024-06-10 08:58:32
合計ジャッジ時間 5,606 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 110 ms
54,020 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 99 ms
53,048 KB
testcase_07 AC 108 ms
53,844 KB
testcase_08 AC 109 ms
52,752 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 105 ms
53,912 KB
testcase_12 AC 111 ms
53,616 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 107 ms
53,964 KB
testcase_16 AC 107 ms
53,960 KB
testcase_17 WA -
testcase_18 AC 120 ms
53,652 KB
testcase_19 AC 97 ms
52,904 KB
testcase_20 AC 109 ms
53,940 KB
testcase_21 AC 108 ms
53,968 KB
testcase_22 AC 112 ms
53,980 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
    public static void main (String[] args) {
        
        Scanner s = new Scanner(System.in);
        String a =s.next();
        String b =s.next();
        String [] day = {"Mon","Tue","Wed","Thu","Fri","Sat","Sun"};
            if(a.equals(day[5])||a.equals(day[6])){
                if(b.equals(day[5])||b.equals(day[6])){
                    System.out.println("8/33");
                }else{
                    System.out.println("8/32");
                }
            }else{
                if(b.equals(day[5])||b.equals(day[6])){
                  System.out.println("8/32");
                }
            }
                System.out.println("8/31");
    }
}
0