結果
問題 | No.965 門松列が嫌い |
ユーザー |
![]() |
提出日時 | 2020-01-13 20:32:49 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 1,210 bytes |
コンパイル時間 | 2,064 ms |
コンパイル使用メモリ | 194,052 KB |
最終ジャッジ日時 | 2025-01-08 17:31:28 |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 9 |
ソースコード
#define DEBUG 1#include <bits/stdc++.h>#define loop(n) for (lint ngtkana_is_a_genius = 0; ngtkana_is_a_genius < lint(n); ngtkana_is_a_genius++)#define rep(i, begin, end) for (lint i = lint(begin); (i) < lint(end); i++)#define all(v) v.begin(), v.end()#define rand(l, r) std::uniform_int_distribution<>(l, r)(mt)using lint = long long;auto mt = std::mt19937_64(std::random_device{}());auto cmn = [](auto&& a, auto b){ if (a > b) {a = b; return true;} return false; };auto cmx = [](auto&& a, auto b){ if (a < b) {a = b; return true;} return false; };void debug_impl() { std::cerr << std::endl; }template <typename Head, typename... Tail>void debug_impl(Head head, Tail... tail) { std::cerr << " " << head; debug_impl(tail...); }#if DEBUG#define debug(...)\do {\std::cerr << std::boolalpha << "[" << #__VA_ARGS__ << "]:";\debug_impl(__VA_ARGS__);\std::cerr << std::noboolalpha;\} while (false)#else#define debug(...) {}#endifint main() {std::cin.tie(0); std::cin.sync_with_stdio(false);int a, b, c;std::cin >> a >> b >> c;if (a > c) std::swap(a,c);int ans = b < a ? a - b : b < c ? 0 : b - c;cmn(ans, c - a);std::cout << ans << std::endl;return 0;}