結果

問題 No.841 8/32
ユーザー ABKZABKZ
提出日時 2021-08-04 23:34:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 158 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 86,920 KB
実行使用メモリ 71,112 KB
最終ジャッジ日時 2023-10-14 21:26:25
合計ジャッジ時間 3,945 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
70,864 KB
testcase_01 AC 70 ms
70,992 KB
testcase_02 AC 70 ms
70,944 KB
testcase_03 AC 74 ms
70,980 KB
testcase_04 AC 69 ms
70,940 KB
testcase_05 AC 69 ms
71,012 KB
testcase_06 AC 69 ms
70,904 KB
testcase_07 AC 69 ms
71,112 KB
testcase_08 AC 70 ms
70,924 KB
testcase_09 AC 69 ms
70,524 KB
testcase_10 AC 70 ms
70,928 KB
testcase_11 AC 69 ms
70,940 KB
testcase_12 AC 69 ms
70,956 KB
testcase_13 AC 67 ms
71,004 KB
testcase_14 AC 69 ms
71,024 KB
testcase_15 AC 67 ms
70,876 KB
testcase_16 AC 69 ms
70,932 KB
testcase_17 AC 69 ms
70,788 KB
testcase_18 AC 69 ms
70,980 KB
testcase_19 AC 70 ms
70,968 KB
testcase_20 AC 69 ms
70,984 KB
testcase_21 AC 68 ms
70,916 KB
testcase_22 AC 69 ms
70,916 KB
testcase_23 AC 69 ms
70,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S1, S2 = input().split()
h = ["Sat", "Sun"]
if S1 in h and not S2 in h:
    print("8/32")
elif S1 in h and S2 in h:
    print("8/33")
else:
    print("8/31")
0