結果
| 問題 | No.857 素振り |
| コンテスト | |
| ユーザー |
ui_mtc
|
| 提出日時 | 2019-09-27 16:41:52 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 1,000 ms |
| + 429µs | |
| コード長 | 210 bytes |
| 記録 | |
| コンパイル時間 | 950 ms |
| コンパイル使用メモリ | 178,048 KB |
| 実行使用メモリ | 9,740 KB |
| 最終ジャッジ日時 | 2026-09-03 03:21:44 |
| 合計ジャッジ時間 | 2,718 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 |
ソースコード
#include <bits/stdc++.h>
#define int long long
using namespace std;
signed main() {
int X, Y, Z;
cin >> X >> Y >> Z;
int ans = Z;
if( X <= Z ) ans--;
if( Y <= Z ) ans--;
cout << ans << endl;
}
ui_mtc