結果
問題 | No.809 かけ算 |
ユーザー | das08 |
提出日時 | 2019-10-25 19:39:19 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 2,996 bytes |
コンパイル時間 | 842 ms |
コンパイル使用メモリ | 85,924 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-21 16:48:41 |
合計ジャッジ時間 | 1,452 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <vector> #include <numeric> //#include <stdio.h> //#include <stack> //#include <queue> //#include <cstdio> #include <cmath> #include <iterator> #include <map> #include <fstream> //#include <list> #include <iomanip> //#include <stdlib.h> //#include <cctype> using namespace std; const int MAX_N = 1000000; #define IOS ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0); #define prec std::cout << std::fixed << std::setprecision(15); #define endl "\n" #define MOD 1000000007 #define Int int64_t #define PI 3.14159265358979 #define rep(i, n) for (int i = 0; i < int(n); i++) #define ssort(z) sort(z.begin(), z.end()) #define rsort(z) sort(z.rbegin(), z.rend()) #define eerase(z) z.erase(unique(z.begin(), z.end()), z.end()) #define ccnt(z, w) count(z.begin(), z.end(), w) template <typename T> void printV(const std::vector<T>& v, const char * const separator = " ") { if(!v.empty()) { std::copy(v.begin(), --v.end(), std::ostream_iterator<T>(std::cout, separator)); std::cout << v.back() << "\n"; } } Int gcd(Int a, Int b) { return b != 0 ? gcd(b, a % b) : a; } Int lcm(Int a, Int b) { return a / gcd(a, b) * b; //a*bは64bit integer overflow } int Max(int a, int b, int c) { int temp = max(a, b); return max(temp, c); } int Min(int a, int b, int c) { int temp = min(a, b); return min(temp, c); } bool integer(double num) { return floor(num) == num; } Int fact(int num) { if (num == 0) return 1; else return num * fact(num - 1); } void y() { cout << "Yes" << endl; exit(0); } void n() { cout << "No" << endl; exit(0); } void Y() { cout << "YES" << endl; exit(0); } void N() { cout << "NO" << endl; exit(0); } Int yakusu(int n) { int cnt = 0; for (int i = 1; i * i <= n; i++) { if (n % i == 0) { cnt++; if (i * i != n) cnt++; } } return cnt; } /* kokomade */ int cnt = 0; bool is_prime[ 50000 + 1 ]; vector<int> P; void Eratosthenes( const int N ) { for( int i = 0; i <= N; i++ ) { is_prime[ i ] = true;//初期化 } for( int i = 2; i <= N; i++ ) { if( is_prime[ i ] ) { for( int j = 2 * i; j <= N; j += i ) { is_prime[ j ] = false; } P.emplace_back( i ); } } } int main() { IOS; Int c; cin>>c; cout<<1<<" "<<c; cout<<endl; return 0; } /* テレビも無ェ ラジオも無ェ 自動車もそれほど走って無ェ ピアノも無ェ バーも無ェ 巡査 毎日ぐーるぐる 朝起ぎで 牛連れで 二時間ちょっとの散歩道 電話も無ェ 瓦斯も無ェ バスは一日一度来る 俺らこんな村いやだ 俺らこんな村いやだ 東京へ出るだ 東京へ出だなら 銭コァ貯めで 東京でベコ(牛)飼うだ */