結果

問題 No.857 素振り
ユーザー pypypymipypypymi
提出日時 2022-01-26 11:21:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 125 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 86,944 KB
実行使用メモリ 79,868 KB
最終ジャッジ日時 2023-08-24 12:52:16
合計ジャッジ時間 4,144 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,384 KB
testcase_01 AC 70 ms
71,344 KB
testcase_02 AC 70 ms
71,052 KB
testcase_03 AC 70 ms
71,192 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y,z = map(int,input().split())
count=0
for i in range(1,z+1):
    if i!=x and i!=y:
        count+=1
print(count)
    
    
0