結果
問題 | No.8060 サンプルケース至上主義 |
ユーザー | cn_449 |
提出日時 | 2020-04-01 21:39:03 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,612 bytes |
コンパイル時間 | 1,063 ms |
コンパイル使用メモリ | 97,108 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-27 09:58:51 |
合計ジャッジ時間 | 1,435 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
ソースコード
#include <iostream>#include <vector>#include <algorithm>#include <cmath>#include <string>#include <queue>#include <stack>#include <set>#include <map>#include <iomanip>#include <utility>#include <tuple>#include <functional>#include <bitset>#include <cassert>#include <complex>#include <stdio.h>#include <time.h>#define int long long#define endl '\n'#define INF 1000000000000000000#define EPS 1e-10#define PI 3.141592653589793238#define all(a) a.begin(),a.end()#define rep(i, n) for (int i = 0; i < (n); i++)#define pb push_back#define double long doubleusing namespace std;typedef long long ll;typedef pair<ll, ll> P;typedef pair<P, ll> PP;typedef complex<double> com;template<class T, class S> bool chmax(T &a, const S &b) { if (a < b) { a = b; return 1; } return 0; }template<class T, class S> bool chmin(T &a, const S &b) { if (a > b) { a = b; return 1; } return 0; }ll gcd(ll n, ll m) { return (m ? gcd(m, n%m) : n); }ll lcm(ll n, ll m) { return n / gcd(n, m)*m; }signed main() {cin.tie(0);ios::sync_with_stdio(false);cout << fixed << setprecision(20);//modcalc();string s;cin >> s;if (s == "0") cout << "Nothing" << endl;else if (s == "3.14159265") cout << "pi" << endl;else if (s == "1112345678999+X") {cout << "九蓮宝燈" << endl;cout << "Thirteen Orphans" << endl;}else if (s == "All") {cout << 3 << endl;cout << 4 << endl;cout << 4 << endl;cout << 3 << endl;cout << 6 << endl;cout << 2 << endl;cout << 2 << endl;}else if (s == "くぁwせdrftgyふじこlp") cout << "さmpぇ" << endl;}