結果
問題 | No.406 鴨等間隔の法則 |
ユーザー | mban |
提出日時 | 2016-08-09 22:27:46 |
言語 | C90 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 666 bytes |
コンパイル時間 | 287 ms |
コンパイル使用メモリ | 21,504 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-11-07 05:09:06 |
合計ジャッジ時間 | 9,623 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 0 ms
5,248 KB |
testcase_02 | AC | 0 ms
5,248 KB |
testcase_03 | AC | 0 ms
5,248 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
コンパイルメッセージ
main.c: In function ‘read’: main.c:7:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 7 | scanf("%d\n", &N); | ^~~~~~~~~~~~~~~~~ main.c:10:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 10 | scanf("%d", &x[i]); | ^~~~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h> #include<stdlib.h> int N; int *x; void read() { scanf("%d\n", &N); x = (int *)malloc(sizeof(int)*N); for (int i = 0; i < N; i++) { scanf("%d", &x[i]); } } int main() { read(); for (int i = N - 1; i >= 0; i--) { for (int j = 0; j < i; j++) { if (x[j] > x[j + 1]) { int k = x[j]; x[j] = x[j + 1]; x[j + 1] = k; } } } for (int i = 0; i < N - 1; i++) { if (x[i] == x[i + 1]) { printf("NO"); return 0; } } int width = x[1] - x[0]; if (N == 2) { printf("YES"); return 0; } for (int i = 2; i < N; i++) { if (x[i] - x[i - 1] != width) { printf("NO"); return 0; } } printf("YES"); return 0; }