結果
| 問題 | No.3647 Initial Maker |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-08-28 21:36:40 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 633µs | |
| コード長 | 771 bytes |
| 記録 | |
| コンパイル時間 | 5,005 ms |
| コンパイル使用メモリ | 359,720 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-08-28 21:36:57 |
| 合計ジャッジ時間 | 6,106 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
#include <bits/stdc++.h>
#if __has_include(<cpp-dump/cpp-dump.hpp>)
#include <cpp-dump/cpp-dump.hpp>
#endif
using namespace std;
using ll = int64_t;
#define all(a) a.begin(), a.end()
#define rep(i, s, e) for (ll i = s; i < e; ++i)
#define asort(a) stable_sort(all(a))
#define rsort(a) stable_sort(a.rbegin(), a.rend())
#define sum(a) reduce(all(a))
constexpr double degrees(double a) { return (a * 180.0) / numbers::pi; }
constexpr double radians(double a) { return (a * numbers::pi) / 180.0; }
int main(int, [[maybe_unused]] char* argv[]) {
#ifdef DEBUG
freopen(argv[1], "r", stdin);
#endif
ios_base::sync_with_stdio(false);
cin.tie(0);
cout << fixed << setprecision(15);
string S, T;
cin >> S;
cin >> T;
println("{}.{}.", S[0], T[0]);
return 0;
}