結果

問題 No.841 8/32
ユーザー iwa_choco_168iwa_choco_168
提出日時 2019-12-03 12:55:14
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 386 bytes
コンパイル時間 4,829 ms
コンパイル使用メモリ 76,732 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-11-27 03:39:35
合計ジャッジ時間 6,890 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
41,336 KB
testcase_01 AC 143 ms
41,704 KB
testcase_02 AC 143 ms
41,656 KB
testcase_03 AC 131 ms
40,280 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 145 ms
41,792 KB
testcase_07 AC 148 ms
41,496 KB
testcase_08 AC 148 ms
41,376 KB
testcase_09 AC 145 ms
41,700 KB
testcase_10 AC 163 ms
41,508 KB
testcase_11 AC 134 ms
40,056 KB
testcase_12 AC 149 ms
41,448 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 145 ms
41,412 KB
testcase_16 AC 144 ms
41,408 KB
testcase_17 WA -
testcase_18 AC 143 ms
41,380 KB
testcase_19 AC 144 ms
41,660 KB
testcase_20 AC 143 ms
41,692 KB
testcase_21 AC 145 ms
41,300 KB
testcase_22 AC 145 ms
41,308 KB
testcase_23 AC 185 ms
41,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int day = 31;
        String str1 = sc.next();
        if(str1.equals("Sat") || str1.equals("Sun")) day++;
        String str2 = sc.next();
        if(str2.equals("Sat") || str2.equals("Sun")) day++;
        System.out.println("8/" + day);
    }
}
0