結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,776 KB
testcase_01 AC 17 ms
7,820 KB
testcase_02 AC 17 ms
7,772 KB
testcase_03 AC 16 ms
7,764 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