結果

問題 No.857 素振り
ユーザー himohimo
提出日時 2019-09-17 17:10:46
言語 C++11
(gcc 13.3.0)
結果
TLE  
実行時間 -
コード長 286 bytes
コンパイル時間 2,228 ms
コンパイル使用メモリ 157,396 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-07 13:17:09
合計ジャッジ時間 4,257 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 2 TLE * 1 -- * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

int main(){
    long long x,y,z;
    cin >> x  >>  y >>z;
    long long ans =0;
    for(long long i=1;i<=z;i++){
        if(i==x||i==y){
            
        }
        else{
            ans++;
        }
    }
    cout << ans <<endl;
    
}
0