結果

問題 No.841 8/32
ユーザー iwa_choco_168iwa_choco_168
提出日時 2019-12-03 12:56:11
言語 Java
(openjdk 23)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 401 bytes
コンパイル時間 3,575 ms
コンパイル使用メモリ 80,896 KB
実行使用メモリ 41,676 KB
最終ジャッジ日時 2024-11-27 03:41:41
合計ジャッジ時間 7,346 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
39,780 KB
testcase_01 AC 115 ms
40,232 KB
testcase_02 AC 128 ms
41,676 KB
testcase_03 AC 127 ms
41,300 KB
testcase_04 AC 129 ms
41,188 KB
testcase_05 AC 117 ms
39,932 KB
testcase_06 AC 127 ms
41,228 KB
testcase_07 AC 123 ms
41,280 KB
testcase_08 AC 123 ms
41,296 KB
testcase_09 AC 116 ms
40,556 KB
testcase_10 AC 123 ms
41,232 KB
testcase_11 AC 124 ms
41,296 KB
testcase_12 AC 126 ms
41,652 KB
testcase_13 AC 124 ms
41,580 KB
testcase_14 AC 124 ms
41,424 KB
testcase_15 AC 124 ms
41,300 KB
testcase_16 AC 128 ms
41,184 KB
testcase_17 AC 124 ms
41,388 KB
testcase_18 AC 112 ms
40,388 KB
testcase_19 AC 112 ms
40,128 KB
testcase_20 AC 124 ms
41,024 KB
testcase_21 AC 111 ms
40,320 KB
testcase_22 AC 126 ms
41,444 KB
testcase_23 AC 110 ms
40,220 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 == 32) day++;
        System.out.println("8/" + day);
    }
}
0