結果

問題 No.1114 足し算盆に返らず
ユーザー 👑 tatyam
提出日時 2020-07-18 00:35:45
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 137 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 117,360 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-15 15:07:07
合計ジャッジ時間 14,856 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

int main(){
    int n;
    std::cin >> n;
    for(int i = n / 2 + 1; i <= n; i++) std::cout << i << " \n"[i == n];
}
0