結果
問題 | No.857 素振り |
ユーザー |
![]() |
提出日時 | 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 |
ソースコード
#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; }