結果
問題 | No.35 タイパー高橋 |
ユーザー | hryshtk |
提出日時 | 2015-08-18 00:28:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 624 bytes |
コンパイル時間 | 1,326 ms |
コンパイル使用メモリ | 157,620 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-07-18 10:07:35 |
合計ジャッジ時間 | 1,641 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:15:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | scanf("%d",&N); | ~~~~~^~~~~~~~~ main.cpp:18:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 18 | scanf("%d%s",T+i,S[i]); | ~~~~~^~~~~~~~~~~~~~~~~
ソースコード
#include<bits/stdc++.h> using namespace std; #define REP(i,a,b) for(i=a;i<b;i++) #define rep(i,n) REP(i,0,n) int N; int T[1111]; char S[1111][111]; int len[1111]; int main(){ int i, j, k; int res1 = 0, res2 = 0; scanf("%d",&N); assert(1 <= N && N <= 1000); rep(i,N){ scanf("%d%s",T+i,S[i]); len[i] = strlen(S[i]); assert(1 <= T[i] && T[i] <= 30000); assert(1 <= len[i] && len[i] <= 100); rep(k,len[i]) assert('a'<=S[i][k] && S[i][k] <= 'z'); } rep(i,N){ k = min(len[i], T[i] * 12 / 1000); res1 += k; res2 += len[i] - k; } printf("%d %d\n", res1, res2); return 0; }