結果

問題 No.1883 SLASH
ユーザー cologne
提出日時 2022-03-25 21:41:52
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 2,673 ms
コンパイル使用メモリ 244,528 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-14 05:38:48
合計ジャッジ時間 3,256 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace std;

using Mint = atcoder::modint998244353;

int main()
{
    int a, b, c;
    scanf("%1d%1d%1d", &a, &b, &c);
    cout << max({a, b, c}) - min({a, b, c}) << endl;
}
0