結果
問題 | No.152 貯金箱の消失 |
ユーザー | 6soukiti29 |
提出日時 | 2017-09-18 16:50:08 |
言語 | Nim (2.0.2) |
結果 |
AC
|
実行時間 | 39 ms / 5,000 ms |
コード長 | 579 bytes |
コンパイル時間 | 2,773 ms |
コンパイル使用メモリ | 65,536 KB |
実行使用メモリ | 16,000 KB |
最終ジャッジ日時 | 2024-06-30 03:12:43 |
合計ジャッジ時間 | 3,609 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 7 ms
6,944 KB |
testcase_08 | AC | 38 ms
15,916 KB |
testcase_09 | AC | 39 ms
16,000 KB |
testcase_10 | AC | 29 ms
10,112 KB |
testcase_11 | AC | 17 ms
9,984 KB |
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'sequtils' [UnusedImport] /home/judge/data/code/Main.nim(1, 31) Warning: imported and not used: 'algorithm' [UnusedImport]
ソースコード
import sequtils,strutils,math,algorithm const m = 1_000_003 var L = stdin.readline.parseInt cnt : int items = newSeq[tuple[x,y,z : int]](0) for a in 1..(floor(sqrt(L / 2)) / 2).int: for b in 0..(floor(sqrt(L / 2)) / 2).int: var x = abs(a * a * 4 - (b * 2 + 1) * (b * 2 + 1)) y = 2 * (2 * a) * (2 * b + 1) z = a * a * 4 + (b * 2 + 1) * (b * 2 + 1) if (x + y + z) * 4 <= L and gcd(x,y) == 1: cnt += 1 #echo @[x,y,z].join(" ") items.add((x,y,z)) cnt = cnt mod m echo cnt