結果

問題 No.481 1から10
ユーザー yumenomatayumeyumenomatayume
提出日時 2020-03-21 17:50:17
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 77 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 86,904 KB
実行使用メモリ 78,932 KB
最終ジャッジ日時 2023-08-24 20:12:17
合計ジャッジ時間 2,034 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,200 KB
testcase_01 AC 72 ms
71,296 KB
testcase_02 AC 72 ms
71,244 KB
testcase_03 AC 73 ms
71,348 KB
testcase_04 AC 75 ms
71,348 KB
testcase_05 AC 72 ms
71,340 KB
testcase_06 AC 72 ms
70,968 KB
testcase_07 AC 72 ms
71,276 KB
testcase_08 AC 72 ms
71,168 KB
testcase_09 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

b = set(map(int,input().split()))
s = {1,2,3,4,5,6,7,8,9}
print(list(s-b)[0])
0