結果

問題 No.857 素振り
ユーザー naoe123naoe123
提出日時 2020-01-04 17:34:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 118 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 10,616 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2023-08-14 20:27:48
合計ジャッジ時間 860 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,792 KB
testcase_01 AC 16 ms
7,692 KB
testcase_02 AC 15 ms
7,760 KB
testcase_03 AC 16 ms
7,856 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

X,Y,Z=map(int,input().split())

cnt=0
l=list(range(1,Z+1))

if X in l:
    cnt+=1
if Y in l:
    cnt+=1

print(Z-cnt)
0