結果
| 問題 | No.3725 Exploit Wall |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-09-19 13:59:22 |
| 言語 | C++23(gcc16) (gcc 16.1.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 2,000 ms |
| + 465µs | |
| コード長 | 243 bytes |
| 記録 | |
| コンパイル時間 | 2,488 ms |
| コンパイル使用メモリ | 353,608 KB |
| 実行使用メモリ | 9,920 KB |
| 最終ジャッジ日時 | 2026-09-19 13:59:47 |
| 合計ジャッジ時間 | 8,871 ms |
|
ジャッジサーバーID (参考情報) |
judge7_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 59 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll=long long;
int main(){
ll N; cin>>N;
for(ll i=0;i<N;i++){
string ans(N,'.');
ans[N-i-1]='#';
if(N-i-2>=0) ans[N-i-2]='#';
cout<<ans<<endl;
}
}