結果

問題 No.313 π
ユーザー piyoko_212piyoko_212
提出日時 2015-12-21 14:18:57
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 395 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 33,484 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-18 18:01:18
合計ジャッジ時間 2,258 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 32
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:8:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |         scanf("%s",in);
      |         ~~~~~^~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#include<algorithm>
using namespace std;
char in[300000];
int cnt[10];
int chk[]={20104,20063,19892,20011,19874,20199,19898,20163,19956,19841};
int main(){
	scanf("%s",in);
	//in[0]='3';
	for(int i=0;in[i];i++){
		if(in[i]!='.')cnt[in[i]-'0']++;
	}
	
	int fu=0;
	int ka=0;
	for(int i=0;i<10;i++){
		if(chk[i]>cnt[i])fu=i;
		if(chk[i]<cnt[i])ka=i;
	}
	printf("%d %d\n",ka,fu);
}
0