結果

問題 No.237 作図可能性
ユーザー TLwiegehttTLwiegehtt
提出日時 2015-07-18 02:04:19
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 20,736 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-08 10:04:51
合計ジャッジ時間 963 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 0 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 0 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 0 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 0 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 0 ms
5,376 KB
testcase_21 AC 0 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 0 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 0 ms
5,376 KB
testcase_29 AC 0 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:10:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         scanf("%lld", &n);
      |         ^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main(void){
	int f[] = { 1, 3, 5, 17, 257, 65537};
	int i,j;
	long long int m=1, n, tmp;
	
	int cnt=0;
	
	scanf("%lld", &n);
	
	for(i=0;i<30;i++){
		for(j=0;j<32;j++){
//			printf("%d %d %d %d %d %d\n", m, f[(j&1)*1], f[((j>>1)&1)*2], f[((j>>2)&1)*3], f[((j>>3)&1)*4], f[((j>>4)&1)*5]);
			tmp = m;
			tmp = tmp * f[(j&1)*1];
			tmp = tmp * f[((j>>1)&1)*2];
			tmp = tmp * f[((j>>2)&1)*3];
			tmp = tmp * f[((j>>3)&1)*4];
			tmp = tmp * f[((j>>4)&1)*5];
			
			if( 2 < tmp && tmp <= n){
				cnt++;
			}
		}
		
		m*=2;
	}
	
	printf("%d\n", cnt);
	return 0;
}
0