結果
問題 | No.5021 Addition Pyramid |
ユーザー |
|
提出日時 | 2025-02-25 20:08:11 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 135 bytes |
コンパイル時間 | 1,598 ms |
コンパイル使用メモリ | 158,688 KB |
実行使用メモリ | 6,820 KB |
スコア | 2,083,465 |
最終ジャッジ日時 | 2025-02-25 20:08:16 |
合計ジャッジ時間 | 4,134 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
純コード判定しない問題か言語 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 50 |
コンパイルメッセージ
main.cpp:4:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type] 4 | main(){ | ^~~~
ソースコード
#include<bits/stdc++.h> using namespace std; #define int long long main(){ int n;cin>>n; for(int i=0;i<n;i++){ cout<<5000000<<" "; } }