結果
問題 | No.250 atetubouのzetubou |
ユーザー | tatt61880 |
提出日時 | 2021-04-04 10:36:30 |
言語 | Kuin (KuinC++ v.2021.9.17) |
結果 |
AC
|
実行時間 | 59 ms / 5,000 ms |
コード長 | 570 bytes |
コンパイル時間 | 1,965 ms |
コンパイル使用メモリ | 147,476 KB |
実行使用メモリ | 39,296 KB |
最終ジャッジ日時 | 2024-09-16 12:23:15 |
合計ジャッジ時間 | 4,410 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
39,296 KB |
testcase_01 | AC | 46 ms
39,296 KB |
testcase_02 | AC | 57 ms
39,296 KB |
testcase_03 | AC | 57 ms
39,168 KB |
testcase_04 | AC | 55 ms
39,296 KB |
testcase_05 | AC | 57 ms
39,296 KB |
testcase_06 | AC | 54 ms
39,296 KB |
testcase_07 | AC | 49 ms
39,296 KB |
testcase_08 | AC | 57 ms
39,296 KB |
testcase_09 | AC | 53 ms
39,296 KB |
testcase_10 | AC | 56 ms
39,296 KB |
testcase_11 | AC | 50 ms
39,168 KB |
testcase_12 | AC | 57 ms
39,296 KB |
testcase_13 | AC | 52 ms
39,296 KB |
testcase_14 | AC | 44 ms
39,296 KB |
testcase_15 | AC | 58 ms
39,168 KB |
testcase_16 | AC | 59 ms
39,168 KB |
testcase_17 | AC | 56 ms
39,296 KB |
testcase_18 | AC | 56 ms
39,296 KB |
testcase_19 | AC | 57 ms
39,168 KB |
testcase_20 | AC | 45 ms
39,168 KB |
testcase_21 | AC | 44 ms
39,296 KB |
ソースコード
func main() const max: int :: 1000000000000001 var comb: [][]int :: #[3000][]int for n(1, 2999) do comb[n] :: #[n + 1]int do comb[n][0] :: 1 do comb[n][n] :: 1 for r(1, n - 1) do comb[n][r] :: comb[n - 1][r - 1] + comb[n - 1][r] if(comb[n][r] > max) do comb[n][r] :: max end if end for end for var q: int :: cui@inputInt() for(1, q) var d: int :: cui@inputInt() var x: int :: cui@inputInt() var t: int :: cui@inputInt() var ans: bool :: comb[x + d - 1][d - 1] <= t do cui@print((ans ?("AC", "ZETUBOU")) ~ "\n") end for end func