結果

問題 No.841 8/32
ユーザー shinwisteriashinwisteria
提出日時 2019-08-30 09:32:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 418 bytes
コンパイル時間 3,667 ms
コンパイル使用メモリ 75,092 KB
実行使用メモリ 54,420 KB
最終ジャッジ日時 2024-11-19 09:36:11
合計ジャッジ時間 7,618 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,420 KB
testcase_01 AC 125 ms
54,112 KB
testcase_02 AC 127 ms
54,204 KB
testcase_03 AC 126 ms
54,144 KB
testcase_04 AC 125 ms
54,156 KB
testcase_05 AC 124 ms
54,056 KB
testcase_06 AC 124 ms
54,164 KB
testcase_07 AC 128 ms
54,336 KB
testcase_08 AC 125 ms
54,304 KB
testcase_09 AC 122 ms
53,760 KB
testcase_10 AC 127 ms
54,188 KB
testcase_11 AC 126 ms
53,896 KB
testcase_12 AC 122 ms
54,068 KB
testcase_13 AC 126 ms
54,044 KB
testcase_14 AC 123 ms
54,144 KB
testcase_15 AC 123 ms
54,048 KB
testcase_16 AC 125 ms
54,216 KB
testcase_17 AC 127 ms
54,260 KB
testcase_18 AC 126 ms
54,180 KB
testcase_19 AC 125 ms
54,056 KB
testcase_20 AC 124 ms
54,204 KB
testcase_21 AC 122 ms
54,192 KB
testcase_22 AC 109 ms
52,724 KB
testcase_23 AC 123 ms
54,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con841 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		String s1 = s.next() , s2 = s.next();
		s.close();

		if(s1.equals("Sat") || s1.equals("Sun")){
			if(s2.equals("Sun") || s2.equals("Sat")){
				System.out.println("8/33");
			}else{
				System.out.println("8/32");
			}
		}else{
			System.out.println("8/31");
		}

	}

}
0