結果
問題 | No.73 helloworld |
ユーザー | tonyu0 |
提出日時 | 2020-03-28 23:51:45 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 469 bytes |
コンパイル時間 | 126 ms |
コンパイル使用メモリ | 29,056 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-10 17:55:51 |
合計ジャッジ時間 | 714 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,940 KB |
コンパイルメッセージ
main.c: In function 'main': main.c:3:31: warning: implicit declaration of function 'scanf' [-Wimplicit-function-declaration] 3 | for(int i = 0; i < 26; ++i) scanf("%lld", &a[i]); | ^~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'scanf' +++ |+#include <stdio.h> 1 | int main() { main.c:3:31: warning: incompatible implicit declaration of built-in function 'scanf' [-Wbuiltin-declaration-mismatch] 3 | for(int i = 0; i < 26; ++i) scanf("%lld", &a[i]); | ^~~~~ main.c:3:31: note: include '<stdio.h>' or provide a declaration of 'scanf' main.c:20:3: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 20 | printf("%lld\n", ans); | ^~~~~~ main.c:20:3: note: include '<stdio.h>' or provide a declaration of 'printf' main.c:20:3: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] main.c:20:3: note: include '<stdio.h>' or provide a declaration of 'printf'
ソースコード
int main() { long long a[26]; for(int i = 0; i < 26; ++i) scanf("%lld", &a[i]); long long ans = 1; ans *= a['h' - 'a']; ans *= a['e' - 'a']; ans *= a['w' - 'a']; ans *= a['d' - 'a']; ans *= a['o' - 'a'] * a['o' - 'a'] / 4; long long l = 0; for (int i = 2; i < a['l' - 'a']; ++i) { long long left = i * (i - 1) / 2; long long right = a['l' - 'a'] - i; if (left * right > l) l = left * right; } ans *= l; printf("%lld\n", ans); }