結果

問題 No.3163 [Cherry 7th Tune N] Draft
コンテスト
ユーザー tnakao0123
提出日時 2025-05-31 16:33:43
言語 C++17
(gcc 15.2.0 + boost 1.89.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 506 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 378 ms
コンパイル使用メモリ 54,360 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2026-01-23 20:35:03
合計ジャッジ時間 996 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

/* -*- coding: utf-8 -*-
 *
 * 3163.cc:  No.3163 [Cherry 7th Tune N] Draft - yukicoder
 */

#include<cstdio>
#include<algorithm>

using namespace std;

/* constant */

const int N = 5;

/* typedef */

/* global variables */

int as[N];

/* subroutines */

/* main */

int main() {
  int tn;
  scanf("%d", &tn);

  while (tn--) {
    for (int i = 0; i < N; i++) scanf("%d", as + i);

    int x = *max_element(as, as + N);
    int y = *min_element(as, as + N);

    printf("%d\n", x - y);
  }

  return 0;
}
0