結果
問題 | No.975 ミスターマックスバリュ |
ユーザー | courange_cou |
提出日時 | 2020-01-31 21:33:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 561 bytes |
コンパイル時間 | 169 ms |
コンパイル使用メモリ | 31,872 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-17 07:18:47 |
合計ジャッジ時間 | 725 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
ソースコード
#include <stdio.h> int main(){ int x,n,m; int flag1 = 0; int flag2 = 0; int mrmax[100000]; int maxvalu[100000]; scanf("%d %d %d",&x,&n,&m); for(int i = 0;i < n;i++){ scanf("%d",&mrmax[i]); if(mrmax[i] == x)flag1 = 1; } for(int i = 0;i < m;i++){ scanf("%d",&maxvalu[i]); if(maxvalu[i] == x)flag2 = 1; } if(flag1 == 1 && flag2 == 0)printf("MrMax\n"); if(flag1 == 0 && flag2 == 1)printf("MaxValu\n"); //if(flag1 == 0 && flag2 == 0)printf(""); if(flag1 == 1 && flag2 == 1)printf("MrMaxValu\n"); }