結果
| 問題 |
No.3353 リウヴィルの定数計算
|
| コンテスト | |
| ユーザー |
sai
|
| 提出日時 | 2025-11-14 21:36:16 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 310 bytes |
| コンパイル時間 | 2,994 ms |
| コンパイル使用メモリ | 275,432 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2025-11-14 21:36:24 |
| 合計ジャッジ時間 | 3,401 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
#include <bits/stdc++.h>
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
const std::string s = ".1100010000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010...";
int n;
std::cin >> n;
std::cout << s[n] << '\n';
}
sai