結果
問題 | No.975 ミスターマックスバリュ |
ユーザー | suppy193 |
提出日時 | 2021-05-02 11:01:14 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 7 ms / 2,000 ms |
コード長 | 602 bytes |
コンパイル時間 | 212 ms |
コンパイル使用メモリ | 20,992 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 19:35:36 |
合計ジャッジ時間 | 718 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 7 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 6 | scanf("%d%d%d", &x, &n, &m); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ main.c:13:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 13 | scanf("%d", &a[i]); | ^~~~~~~~~~~~~~~~~~ main.c:16:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 16 | scanf("%d", &b[i]); | ^~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(void) { int x, n, m; scanf("%d%d%d", &x, &n, &m); int a[100001], b[100001]; int i; int flag_a = 0; int flag_b = 0; for(i = 0;i < n;i++){ scanf("%d", &a[i]); } for(i = 0;i < m;i++){ scanf("%d", &b[i]); } for(i = 0;i < n;i++){ if(a[i] == x){ flag_a = 1; break; } } for(i = 0;i < m;i++){ if(b[i] == x){ flag_b = 1; break; } } if(flag_a == 1){ printf("Mr"); } if(flag_a == 1 || flag_b == 1){ printf("Max"); } if(flag_b == 1){ printf("Valu"); } if(flag_a == 0 && flag_b == 0){ printf("-1"); } printf("\n"); return 0; }