結果
問題 | No.231 めぐるはめぐる (1) |
ユーザー | bosonosob |
提出日時 | 2015-06-27 14:14:28 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 491 bytes |
コンパイル時間 | 193 ms |
コンパイル使用メモリ | 21,504 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-07 19:57:59 |
合計ジャッジ時間 | 2,668 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:9:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | scanf("%d", &n); | ^~~~~~~~~~~~~~~ main.c:14:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 14 | scanf("%d %d", &g[i], &d[i]); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> // scanfとprintfを使うおまじない int main(int argc, char *argv[]){ int n; int g[1000]; int d[1000]; scanf("%d", &n); int i; for(i=0;i<n;i++){ scanf("%d %d", &g[i], &d[i]); } int a[n]; for(i=0;i<n;i++){ a[i] = g[i] - 30000*d[i]; } int biggest = a[0]; int number = 0; for(i=1;i<n;i++){ if(a[i]>biggest) { biggest = a[i]; number = i; } } if(biggest*6 >= 3000000){ printf("YES\n"); for(i=0;i<6;i++) printf("%d\n",number); } return 0; }