結果
問題 | No.35 タイパー高橋 |
ユーザー | kanzaki_puyo |
提出日時 | 2015-11-05 22:19:24 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 4 ms / 5,000 ms |
コード長 | 515 bytes |
コンパイル時間 | 576 ms |
コンパイル使用メモリ | 58,288 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-13 12:51:23 |
合計ジャッジ時間 | 960 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,812 KB |
testcase_01 | AC | 3 ms
6,944 KB |
testcase_02 | AC | 4 ms
6,944 KB |
testcase_03 | AC | 4 ms
6,944 KB |
ソースコード
#include<iostream> #include<vector> #include<string> using namespace std; int main() { int N; double ms; int success = 0, fault = 0; string str; cin >> N; for(int i=0; i<N; i++){ cin >> ms >> str; if((ms/1000)*12 >= (double)str.length()){ success += str.length(); }else{ success += (double)(ms/1000)*12; fault += (str.length() - (int)((ms/1000)*12)); } } cout << success << ' ' << fault << endl; return 0; }