結果

問題 No.2599 Summer Project
コンテスト
ユーザー NP
提出日時 2024-01-19 17:56:31
言語 PyPy3
(7.3.23 + ACL)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 64 ms / 2,000 ms
+ 101µs
コード長 202 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 232 ms
コンパイル使用メモリ 96,204 KB
実行使用メモリ 78,976 KB
最終ジャッジ日時 2026-09-05 11:36:17
合計ジャッジ時間 1,801 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

def find_missing_item(S, T):
    items = {"watermelon", "beachball", "shrinebell"}
    items.remove(S)
    items.remove(T)
    return items.pop()

S = input()
T = input()
print(find_missing_item(S, T))
0