結果
| 問題 |
No.3163 [Cherry 7th Tune N] Draft
|
| コンテスト | |
| ユーザー |
tnakao0123
|
| 提出日時 | 2025-05-31 16:33:43 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 506 bytes |
| コンパイル時間 | 335 ms |
| コンパイル使用メモリ | 41,808 KB |
| 実行使用メモリ | 7,844 KB |
| 最終ジャッジ日時 | 2025-05-31 16:33:44 |
| 合計ジャッジ時間 | 1,120 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 7 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:27:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
27 | scanf("%d", &tn);
| ~~~~~^~~~~~~~~~~
main.cpp:30:38: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
30 | for (int i = 0; i < N; i++) scanf("%d", as + i);
| ~~~~~^~~~~~~~~~~~~~
ソースコード
/* -*- 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;
}
tnakao0123