結果
問題 |
No.964 2020
|
ユーザー |
![]() |
提出日時 | 2020-01-13 20:43:27 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 202 bytes |
コンパイル時間 | 1,840 ms |
コンパイル使用メモリ | 165,204 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-21 16:36:23 |
合計ジャッジ時間 | 3,785 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | WA * 8 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; for(int i=0;i<n;i++){ for(int j=0;j<i;j++){ cout << i+1; } } cout << endl; }