結果
問題 | No.552 十分簡単な星1の問題 |
ユーザー |
|
提出日時 | 2020-09-09 06:36:43 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 32 ms / 2,000 ms |
コード長 | 295 bytes |
コンパイル時間 | 6,619 ms |
コンパイル使用メモリ | 385,044 KB |
最終ジャッジ日時 | 2025-01-14 08:49:08 |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 47 |
ソースコード
#include <bits/stdc++.h>#include <boost/multiprecision/cpp_int.hpp>using namespace std;void solve() {namespace mp = boost::multiprecision;mp::int128_t N;cin >> N;N *= 10;cout << N << endl;}int main() {cin.tie(0);ios::sync_with_stdio(false);solve();getchar();}