結果

問題 No.841 8/32
ユーザー d07ki3bq1uzd07ki3bq1uz
提出日時 2019-12-08 22:18:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 567 bytes
コンパイル時間 1,947 ms
コンパイル使用メモリ 75,636 KB
実行使用メモリ 54,136 KB
最終ジャッジ日時 2024-06-10 08:35:52
合計ジャッジ時間 5,419 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 99 ms
54,004 KB
testcase_04 AC 116 ms
53,972 KB
testcase_05 AC 94 ms
52,372 KB
testcase_06 AC 100 ms
52,688 KB
testcase_07 AC 110 ms
53,840 KB
testcase_08 AC 109 ms
53,772 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 111 ms
53,872 KB
testcase_12 AC 115 ms
53,912 KB
testcase_13 AC 115 ms
54,136 KB
testcase_14 AC 101 ms
52,560 KB
testcase_15 AC 113 ms
54,056 KB
testcase_16 AC 101 ms
52,908 KB
testcase_17 AC 109 ms
53,956 KB
testcase_18 AC 99 ms
52,512 KB
testcase_19 AC 122 ms
54,064 KB
testcase_20 AC 108 ms
53,812 KB
testcase_21 AC 115 ms
53,636 KB
testcase_22 AC 107 ms
53,892 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");
                }
            }
                System.out.println("8/31");
    }
}
0