結果
問題 | No.182 新規性の虜 |
ユーザー | しめはじめ |
提出日時 | 2019-08-09 12:06:28 |
言語 | C (gcc 12.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 652 bytes |
コンパイル時間 | 298 ms |
コンパイル使用メモリ | 29,824 KB |
実行使用メモリ | 7,296 KB |
最終ジャッジ日時 | 2024-07-19 06:44:00 |
合計ジャッジ時間 | 11,345 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 4,019 ms
5,376 KB |
testcase_09 | TLE | - |
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 | -- | - |
evil01.txt | -- | - |
evil02.txt | -- | - |
ソースコード
#include <stdio.h> int main(void){ int n; scanf( "%d", &n ); int i, j, temp; int num[n + 2]; int ans = 0; if( n == 1 ){ ans = 1; }else{ num[0] = -1; for( i = 0; i < n; i++ ){ scanf( "%d", &num[i+1] ); } num[n+1] = -1; // ソート for( i = 0; i < n; i++ ){ for( j = i + 1; j < n; j++ ){ if( num[i] > num[j] ){ temp = num[j]; num[j] = num[i]; num[i] = temp; } } } for( i = 1; i <= n; i++ ){ if( num[i] != num[i+1] && num[i] != num[i-1] ){ ans++; } } } printf( "%d\n", ans ); }