結果

問題 No.841 8/32
ユーザー ..
提出日時 2019-08-09 15:27:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 924 ms
コンパイル使用メモリ 86,832 KB
実行使用メモリ 71,532 KB
最終ジャッジ日時 2023-09-26 13:16:18
合計ジャッジ時間 3,957 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,048 KB
testcase_01 AC 69 ms
71,172 KB
testcase_02 AC 70 ms
71,316 KB
testcase_03 AC 71 ms
71,528 KB
testcase_04 AC 71 ms
71,352 KB
testcase_05 AC 71 ms
71,240 KB
testcase_06 AC 70 ms
71,108 KB
testcase_07 AC 69 ms
71,168 KB
testcase_08 AC 70 ms
71,156 KB
testcase_09 AC 69 ms
71,260 KB
testcase_10 AC 69 ms
71,168 KB
testcase_11 AC 70 ms
71,220 KB
testcase_12 AC 71 ms
71,532 KB
testcase_13 AC 71 ms
71,168 KB
testcase_14 AC 71 ms
71,460 KB
testcase_15 AC 70 ms
71,200 KB
testcase_16 AC 70 ms
70,980 KB
testcase_17 AC 69 ms
71,236 KB
testcase_18 AC 71 ms
71,216 KB
testcase_19 AC 72 ms
71,172 KB
testcase_20 AC 70 ms
71,168 KB
testcase_21 AC 70 ms
71,172 KB
testcase_22 AC 69 ms
71,452 KB
testcase_23 AC 71 ms
71,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l=list(input().split())
ll=["Sun","Sat"]
if l[0] in ll and l[1] in ll:
    print("8/33")
elif  l[0] in ll :
    print("8/32")
else:
    print("8/31")
0