結果
問題 | No.2124 Guess the Permutation |
ユーザー | tatt61880 |
提出日時 | 2023-03-12 12:25:41 |
言語 | Kuin (KuinC++ v.2021.9.17) |
結果 |
RE
|
実行時間 | - |
コード長 | 603 bytes |
コンパイル時間 | 2,093 ms |
コンパイル使用メモリ | 146,356 KB |
実行使用メモリ | 25,604 KB |
平均クエリ数 | 374.60 |
最終ジャッジ日時 | 2024-09-18 07:01:39 |
合計ジャッジ時間 | 4,121 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
ソースコード
func main() var n: int :: cui@inputInt() var a: []int :: #[n]int do cui@print("? 1 3\n") do cui@flush() var s3: int :: cui@inputInt() do cui@print("? 2 3\n") do cui@flush() do a[0] :: s3 - cui@inputInt() do cui@print("? 1 2\n") do cui@flush() do a[2] :: s3 - cui@inputInt() do a[1] :: s3 - a[0] - a[2] var sum: int :: s3 for i(4, n) do cui@print("? 1 \{i}\n") do cui@flush() var v: int :: cui@inputInt() do a[i - 1] :: v - sum do sum :: v end for do cui@print("!") for i(0, n - 1) do cui@print(" \{a[i]}") end for do cui@print("\n") do cui@flush() end func