結果
問題 | No.152 貯金箱の消失 |
ユーザー | hotpepsi |
提出日時 | 2015-09-22 00:50:37 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 501 bytes |
コンパイル時間 | 512 ms |
コンパイル使用メモリ | 60,664 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-19 08:33:15 |
合計ジャッジ時間 | 7,132 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
8,320 KB |
testcase_01 | AC | 22 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 12 ms
5,376 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
ソースコード
#include <iostream> #include <sstream> #include <cmath> using namespace std; int gcd(int a, int b) { return b ? gcd(b, a % b) : a; } int main(int argc, char *argv[]) { int N; cin >> N; N /= 4; int ans = 0; for (int a = 3; a < N; ++a) { for (int b = a + 1; ; ++b) { if (gcd(a, b) != 1) { continue; } int d = a * a + b * b; int c = (int)sqrt(d); if (a + b + c > N) { break; } if (c * c == d) { ++ans; } } } cout << (ans % 1000003) << endl; return 0; }