結果

問題 No.841 8/32
ユーザー YU HiroseYU Hirose
提出日時 2024-06-29 02:03:43
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 160 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-06-29 02:03:46
合計ジャッジ時間 1,959 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

if (s1 == "Sat" and s2 == "Sun") or (s2 == "Sat" and s1 == "Sun"):
    print("8/33")
elif s1 == "Sat" or s1 == "Sun":
    print("8/32")
else:
    print("8/31")
0