結果

問題 No.841 8/32
ユーザー GodNegotoGodNegoto
提出日時 2019-11-07 17:12:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 452 bytes
コンパイル時間 3,336 ms
コンパイル使用メモリ 77,408 KB
実行使用メモリ 41,764 KB
最終ジャッジ日時 2024-09-15 00:42:14
合計ジャッジ時間 7,289 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,308 KB
testcase_01 WA -
testcase_02 AC 125 ms
41,212 KB
testcase_03 AC 122 ms
41,132 KB
testcase_04 AC 125 ms
41,764 KB
testcase_05 AC 122 ms
41,172 KB
testcase_06 AC 123 ms
41,232 KB
testcase_07 AC 122 ms
41,008 KB
testcase_08 AC 125 ms
41,192 KB
testcase_09 AC 124 ms
41,044 KB
testcase_10 AC 124 ms
41,528 KB
testcase_11 AC 125 ms
41,100 KB
testcase_12 AC 123 ms
41,104 KB
testcase_13 AC 126 ms
41,396 KB
testcase_14 AC 121 ms
41,012 KB
testcase_15 AC 109 ms
40,060 KB
testcase_16 AC 122 ms
41,400 KB
testcase_17 AC 123 ms
41,136 KB
testcase_18 AC 123 ms
41,120 KB
testcase_19 AC 123 ms
41,180 KB
testcase_20 AC 124 ms
40,968 KB
testcase_21 AC 125 ms
41,268 KB
testcase_22 AC 124 ms
41,440 KB
testcase_23 AC 125 ms
41,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.Scanner;

//import algo.*;

public class sample7 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s1 = sc.next();
		String s2 = sc.next();
		if (("Sun".equals(s1)) || ("Sat".equals(s1))) {
			if (("Sat".equals(s2)) || ("Sat".equals(s2))) {
				System.out.println("8/33");
			}
			else {
				System.out.println("8/32");
			}
		}
		else {
			System.out.println("8/31");
		}
	}
}
0