結果
問題 | No.501 穴と文字列 |
ユーザー | kotatsugame |
提出日時 | 2017-04-07 22:42:08 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 283 bytes |
コンパイル時間 | 542 ms |
コンパイル使用メモリ | 65,892 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-14 16:20:58 |
合計ジャッジ時間 | 1,325 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 22 |
コンパイルメッセージ
main.cpp:3:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 3 | main() | ^~~~
ソースコード
#include<iostream> using namespace std; main() { int n,d;cin>>n>>d; string s=""; for(int i=0;i<n;i++)s+="A"; d-=n; if(d==0)cout<<s<<endl; else if(d<0) { for(int i=0;i<-d;i++)s[n-i-1]='C'; cout<<s<<endl; } else { for(int i=0;i<d;i++)s[n-i-1]='B'; cout<<s<<endl; } }