結果

問題 No.9000 Hello World! (テスト用)
ユーザー IBRAHIM TIMITEIBRAHIM TIMITE
提出日時 2022-07-05 16:57:52
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 1,208 bytes
コンパイル時間 805 ms
コンパイル使用メモリ 92,600 KB
実行使用メモリ 4,376 KB
最終ジャッジ日時 2023-08-22 05:39:10
合計ジャッジ時間 1,490 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include  <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <map>
#include <numeric>
#include <set>
#include <queue>
#include <random> 


#include <assert.h>
#include <math.h> 
#include <time.h>       


#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define make_unique(x) sort(all((x))); (x).resize(unique(all((x))) - (x).begin())

typedef long long ll;

template<typename T>
void show(const T &v){
    if (v.empty()) return;
    for (auto it : v) std::cout << it << " ";
    std::cout << "\n";
}

template<typename T>
void read(std::vector<T> &a) {
    for (T &it : a) {
        std::cin >> it;
    }
}
template<typename T> 
void show_pairs (const T &a) {
    for (auto it : a) {
        std::cout << it.first << " " << it.second << "\n";
    }  
}
template<typename T>
void read(T &n) { std::cin >> n; }
template<typename T>
void send(T &ans) { std::cout << ans << "\n"; }

void solve() {
    std::string s;
    std::cin >> s;
    std::cout << "Hello World!\n";
    return;
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int t = 1;
  //  std::cin >> t;
    while(t--) {
        solve();
   }
    return 0;
}
0