結果
問題 | No.279 木の数え上げ |
ユーザー | ReERishun |
提出日時 | 2020-06-01 00:41:31 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 456 bytes |
コンパイル時間 | 717 ms |
コンパイル使用メモリ | 28,032 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-04-30 00:22:13 |
合計ジャッジ時間 | 1,814 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
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 | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
#include<stdio.h> int main() { char str[1000001]; char flg[26]; int ans = 0; for (int i = 0; i < 26; i++) flg[i] = 0; scanf("%s", str); for (int i = 0; str[i] != '\0'; i++) flg[str[i] - 'a']++; if (flg['t' - 'a'] > flg['r' - 'a']) { ans = flg['r' - 'a']; } else { ans = flg['t' - 'a']; } if (flg['e' - 'a'] / 2 > flg['r' - 'a']) { ans = flg['r' - 'a']; } else { ans = flg['e' - 'a'] / 2; } printf("%d", ans); return 0; }