結果
問題 | No.35 タイパー高橋 |
ユーザー | Yang33 |
提出日時 | 2015-12-30 16:48:17 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 421 bytes |
コンパイル時間 | 379 ms |
コンパイル使用メモリ | 56,168 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-19 08:46:53 |
合計ジャッジ時間 | 749 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#include<iostream> #include<cstring> using namespace std; int main(void) { int i, n, t, len,miss=0, ans=0,cor; char s[100]; cin >> n; for(i = 0; i < n; i++){ cin >> t >> s; len = strlen(s); cor = 12 * t / 1000; if (cor > len) {//全部の文字が打てるとき ans += len; }else {//全部の文字が打てない時 ans +=cor; miss += len - cor; } } cout << ans << " " << miss; return 0; }