結果
| 問題 | No.8064 う し た ぷ に き あ く ん 笑 |
| コンテスト | |
| ユーザー |
Flkanjin
|
| 提出日時 | 2020-04-02 00:29:02 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
CE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 3,121 bytes |
| 記録 | |
| コンパイル時間 | 1,333 ms |
| コンパイル使用メモリ | 140,440 KB |
| 最終ジャッジ日時 | 2026-01-03 03:25:07 |
| 合計ジャッジ時間 | 2,458 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
/tmp/ccb43kkK.s: Assembler messages: /tmp/ccb43kkK.s:122: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:124: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:126: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:128: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:130: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:132: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:134: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:136: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:138: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:140: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:142: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:144: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:146: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:148: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:150: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:152: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:154: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:156: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:158: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:160: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:162: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:164: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:166: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:168: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:170: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:172: Error: unknown pseudo-op: `.base64' /tmp/ccb43kkK.s:174: Error: unknown pseudo-op: `.base64'
ソースコード
#define _USE_MATH_DEFINES
#include <algorithm>
#include <bitset>
#include <cassert>
#include <cctype>
#include <climits>
#include <clocale>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <deque>
#include <fstream>
#include <functional>
#include <iomanip>
#include <iostream>
#include <iterator>
#include <list>
#include <map>
#include <numeric>
#include <queue>
#include <regex>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <tuple>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>
using namespace std;
#define IOS ios::sync_with_stdio(false); cin.tie(0);
#define FOR(i, s, n) for(int i = (s), i##_len=(n); i < i##_len; ++i)
#define FORS(i, s, n) for(int i = (s), i##_len=(n); i <= i##_len; ++i)
#define VFOR(i, s, n) for(int i = (s); i < (n); ++i)
#define VFORS(i, s, n) for(int i = (s); i <= (n); ++i)
#define REP(i, n) FOR(i, 0, n)
#define REPS(i, n) FORS(i, 0, n)
#define VREP(i, n) VFOR(i, 0, n)
#define VREPS(i, n) VFORS(i, 0, n)
#define RFOR(i, s, n) for(int i = (s), i##_len=(n); i >= i##_len; --i)
#define RFORS(i, s, n) for(int i = (s), i##_len=(n); i > i##_len; --i)
#define RREP(i, n) RFOR(i, n, 0)
#define RREPS(i, n) RFORS(i, n, 0)
#define IREP(i, v) for(auto i = (v).begin(); i != (v).end(); ++i)
#define IRREP(i, v) for(auto i = (v).rbegin(); i != (v).rend(); ++i)
#define ALL(v) (v).begin(), (v).end()
#define RALL(v) (v).rbegin(), (v).rend()
#define SORT(v) sort(ALL(v))
#define RSORT(v) sort(RALL(v))
#define SZ(x) ((int)(x).size())
#define REV(x) reverse(ALL(x))
#define PB push_back
#define EB emplace_back
#define MP make_pair
#define MT make_tuple
#define BIT(n) (1LL<<(n))
#define UNIQUE(v) v.erase(unique(ALL(v)), v.end())
using ld = long double;
using ll = long long;
using ui = unsigned int;
using ull = unsigned long long;
using Pi_i = pair<int, int>;
using Pll_ll = pair<ll, ll>;
using VB = vector<bool>;
using VC = vector<char>;
using VD = vector<double>;
using VI = vector<int>;
using VLL = vector<ll>;
using VS = vector<string>;
using VSH = vector<short>;
using VULL = vector<ull>;
const int MOD = 1000000007;
const int INF = 1000000000; //1e9
const int NIL = -1;
const ll LINF = 1000000000000000000; // 1e18
const double EPS = 1E-10;
template<class T, class S>
bool chmax(T &a, const S &b){
if(a < b){
a = b; return true;
}
return false;
}
template<class T, class S>
bool chmin(T &a, const S &b){
if(b < a){
a = b; return true;
}
return false;
}
int main(){
string ans[] = {"う し", "う あ", "ん 笑", "た ぷ", "く ん", "ぷ に", "し き", "あ く",
"う く", "あ 笑", "う ん", "し ぷ", "う き", "く 笑", "う 笑", "に き",
"ぷ 笑", "た き", "た ん", "し あ", "し ん", "う う", "う た", "き 笑",
"に く", "笑 笑"};
string S; cin >> S;
REP(i, S.length()){
if(i) ;
cout << ans[S[i] - 'a'];
cout << " ";
}
cout << endl;
return 0;
}
Flkanjin