結果
| 問題 |
No.809 かけ算
|
| コンテスト | |
| ユーザー |
betweens
|
| 提出日時 | 2019-05-18 00:27:58 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 433 bytes |
| コンパイル時間 | 646 ms |
| コンパイル使用メモリ | 74,220 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-17 06:04:04 |
| 合計ジャッジ時間 | 1,239 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge6 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 6 |
ソースコード
#include <iostream>
#include <cmath>
#include <vector>
#include <string>
#include <map>
typedef long double ld;
typedef long long ll;
void print(){ std::cout << std::endl; }
template<typename H> void print(H head) { std::cout << head << std::endl; }
template<typename H, typename... T> void print(H head, T... tail){ std::cout << head << " ", print(tail...); }
int main()
{
ll C;
std::cin >> C;
print(1, C);
return 0;
}
betweens