結果
| 問題 |
No.786 京都大学の過去問
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-04-18 01:22:04 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 339 bytes |
| コンパイル時間 | 697 ms |
| コンパイル使用メモリ | 65,920 KB |
| 最終ジャッジ日時 | 2025-01-09 21:02:08 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 |
ソースコード
#include <iostream>
using lint = long long;
void solve() {
int n;
std::cin >> n;
lint a = 0, b = 1;
while (n--) {
auto c = a + b;
a = b;
b = c;
}
std::cout << b << std::endl;
}
int main() {
std::cin.tie(nullptr);
std::ios::sync_with_stdio(false);
solve();
return 0;
}