結果
問題 | No.133 カードゲーム |
ユーザー | くれちー |
提出日時 | 2016-11-20 00:05:26 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 746 bytes |
コンパイル時間 | 125 ms |
コンパイル使用メモリ | 22,912 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-27 06:30:50 |
合計ジャッジ時間 | 865 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 0 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 0 ms
5,248 KB |
testcase_15 | WA | - |
testcase_16 | AC | 1 ms
5,248 KB |
testcase_17 | AC | 1 ms
5,248 KB |
testcase_18 | WA | - |
testcase_19 | AC | 0 ms
5,248 KB |
testcase_20 | AC | 1 ms
5,248 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:22:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 22 | scanf("%d", &n); | ^~~~~~~~~~~~~~~ main.c:26:33: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 26 | for (i = 0; i < n; i++) scanf("%d", &a[i]); | ^~~~~~~~~~~~~~~~~~ main.c:27:33: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 27 | for (i = 0; i < n; i++) scanf("%d", &b[i]); | ^~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <stdlib.h> int getrand(int min, int max) { return min + (int)(rand() * (max - min + 1.0) / (1.0 + RAND_MAX)); } void swap(int *a, int *b) { int tmp = *a; *a = *b; *b = tmp; } void shuffle(int *d, int size) { int tmp1 = getrand(0, size - 1); int tmp2 = getrand(0, size - 1); swap(&d[tmp1], &d[tmp2]); } int main() { int n; scanf("%d", &n); int a[4], b[4]; int i, j; for (i = 0; i < n; i++) scanf("%d", &a[i]); for (i = 0; i < n; i++) scanf("%d", &b[i]); int cnta = 0, num = 500; for (i = 0; i < num; i++) { shuffle(a, n); shuffle(b, n); int cnt = 0; for (j = 0; j < n; j++) { if (a[j] > b[j]) cnt++; } if (cnt > n / 2) cnta++; } printf("%.3lf\n", (double)cnta / num); return 0; }