結果
問題 | No.851 テストケース |
ユーザー | bal4u |
提出日時 | 2019-07-26 22:00:01 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 682 bytes |
コンパイル時間 | 211 ms |
コンパイル使用メモリ | 29,696 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-02 07:13:12 |
合計ジャッジ時間 | 871 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 0 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
main.c: In function 'in': main.c:9:14: warning: implicit declaration of function 'getchar_unlocked' [-Wimplicit-function-declaration] 9 | #define gc() getchar_unlocked() | ^~~~~~~~~~~~~~~~ main.c:15:27: note: in expansion of macro 'gc' 15 | ll n = 0; int c = gc(); | ^~
ソースコード
// yukicoder: No.851 テストケース // 2019.7.26 bal4u #include <stdio.h> typedef long long ll; #if 1 #define gc() getchar_unlocked() #else #define gc() getchar() #endif ll in() { // 非負整数の入力 ll n = 0; int c = gc(); while (1) { n = 10 * n + (c & 0xf); if ((c = gc()) == ' ') return -1; if (c < ' ') break; } return n; } int main() { int i; ll a[3], t, b, c, d; in(); for (i = 0; i < 3; i++) { if ((a[i] = in()) < 0) { puts("\"assert\""); return 0; } } b = a[0] + a[1], c = a[0] + a[2], d = a[1] + a[2]; if (b < c) t = b, b = c, c = t; if (c < d) t = c, c = d, d = t; if (c != b) printf("%lld\n", c); else printf("%lld\n", d); return 0; }