結果
問題 | No.841 8/32 |
ユーザー |
|
提出日時 | 2021-08-04 23:34:28 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 42 ms / 2,000 ms |
コード長 | 158 bytes |
コンパイル時間 | 374 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 52,096 KB |
最終ジャッジ日時 | 2024-09-16 15:11:40 |
合計ジャッジ時間 | 2,296 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
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")