結果

問題 No.276 連続する整数の和(1)
ユーザー FF256grhyFF256grhy
提出日時 2015-09-04 23:25:24
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 229 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 22,528 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-07-19 02:18:43
合計ジャッジ時間 3,360 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,528 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |         scanf("%d", &n);
      |         ~~~~~^~~~~~~~~~

ソースコード

diff #

// 多分TLE

#include <stdio.h>

int main(void) {
	int n;
	scanf("%d", &n);
	long long int s = n * (n - 1) / 2;
	int i;
	for(i = n; 0 <= i ; i--) {
		if(n % i == 0 && s % i == 0) { break; }
	}
	printf("%d\n", i);
	
	return 0;
}
0