結果

問題 No.841 8/32
ユーザー d07ki3bq1uzd07ki3bq1uz
提出日時 2019-12-08 22:40:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 583 bytes
コンパイル時間 2,043 ms
コンパイル使用メモリ 74,704 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-06-10 19:52:34
合計ジャッジ時間 5,946 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,112 KB
testcase_01 AC 120 ms
41,148 KB
testcase_02 AC 124 ms
41,008 KB
testcase_03 AC 124 ms
40,908 KB
testcase_04 AC 122 ms
40,968 KB
testcase_05 AC 127 ms
41,264 KB
testcase_06 AC 127 ms
41,540 KB
testcase_07 AC 120 ms
41,132 KB
testcase_08 AC 126 ms
41,132 KB
testcase_09 AC 112 ms
39,912 KB
testcase_10 AC 127 ms
41,004 KB
testcase_11 AC 125 ms
41,152 KB
testcase_12 AC 111 ms
39,848 KB
testcase_13 AC 124 ms
41,020 KB
testcase_14 AC 121 ms
41,476 KB
testcase_15 AC 118 ms
41,160 KB
testcase_16 AC 110 ms
40,012 KB
testcase_17 AC 128 ms
40,828 KB
testcase_18 AC 126 ms
41,028 KB
testcase_19 AC 127 ms
41,160 KB
testcase_20 AC 127 ms
40,852 KB
testcase_21 AC 125 ms
41,024 KB
testcase_22 AC 125 ms
41,124 KB
testcase_23 AC 126 ms
41,180 KB
権限があれば一括ダウンロードができます

ソースコード

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{
             System.out.println("8/31");
            }
    }
}
0