結果
問題 | No.1992 Tendon Walk |
ユーザー |
|
提出日時 | 2025-03-31 20:08:26 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 285 bytes |
コンパイル時間 | 855 ms |
コンパイル使用メモリ | 77,184 KB |
実行使用メモリ | 7,324 KB |
最終ジャッジ日時 | 2025-03-31 20:08:28 |
合計ジャッジ時間 | 1,682 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 |
ソースコード
#include <iostream>#include <cstdint>using namespace std;int main(){cin.tie(nullptr);ios::sync_with_stdio(false);uint32_t X;cin >> X;constexpr uint32_t ans_of[11] = { UINT32_MAX, UINT32_MAX, 2, 5, 4, 15, 14, 25, 24, 35, 34 };cout << ans_of[X] << '\n';return 0;}