結果

問題 No.841 8/32
ユーザー ProgrammerryokiProgrammerryoki
提出日時 2019-12-07 13:52:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 187 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 10,680 KB
実行使用メモリ 8,004 KB
最終ジャッジ日時 2023-08-26 17:09:18
合計ジャッジ時間 1,601 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,808 KB
testcase_01 AC 14 ms
7,840 KB
testcase_02 AC 14 ms
7,848 KB
testcase_03 AC 13 ms
7,920 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 14 ms
7,936 KB
testcase_07 AC 14 ms
7,808 KB
testcase_08 AC 13 ms
7,764 KB
testcase_09 AC 13 ms
8,004 KB
testcase_10 AC 13 ms
7,904 KB
testcase_11 AC 13 ms
7,972 KB
testcase_12 AC 13 ms
7,776 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 13 ms
7,840 KB
testcase_16 AC 14 ms
7,760 KB
testcase_17 WA -
testcase_18 AC 13 ms
7,792 KB
testcase_19 AC 13 ms
7,764 KB
testcase_20 AC 13 ms
7,844 KB
testcase_21 AC 13 ms
7,796 KB
testcase_22 AC 13 ms
7,888 KB
testcase_23 AC 13 ms
7,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

d = ["Sun","Sat"]
s1, s2 = input().split()
if s1 in d and s2 in d:
    print("8/33")
elif (s1 in d and s2 not in d) or (s1 not in d and s2 in d):
    print("8/32")
else:
    print("8/31")
0