結果
問題 | No.35 タイパー高橋 |
ユーザー | kachipan |
提出日時 | 2023-06-30 09:56:55 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 817 bytes |
コンパイル時間 | 117 ms |
コンパイル使用メモリ | 30,720 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-06 22:46:06 |
合計ジャッジ時間 | 600 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
6,940 KB |
ソースコード
#include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <math.h> int main() { char str[101] = ""; int writeTime = (double)1 / 12 * 1000; // 1文字辺りにかかる時間 int gameNum = 0; // ゲーム回数 int timeLimit = 0; int writeNum = 0; // 打てた文字数 int strCnt = 0; // 総文字数 scanf("%d", &gameNum); for (int i = 0;i < gameNum;i++) { scanf("%d", &timeLimit); scanf("%s", str); int j = 0; int tmp_write = 0; for (;str[j] != '\0';j++); if (timeLimit > writeTime) { // 割り算の答えが書いた文字数の値になる。 tmp_write += timeLimit / writeTime; if (tmp_write >= j) { writeNum += j; } else { writeNum += tmp_write; } } strCnt += j; } printf("%d %d\n", writeNum, strCnt-writeNum); return 0; }