結果
| 問題 |
No.501 穴と文字列
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-04-21 20:30:07 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 427 bytes |
| コンパイル時間 | 1,216 ms |
| コンパイル使用メモリ | 157,284 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-12-14 16:35:23 |
| 合計ジャッジ時間 | 1,914 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 22 |
コンパイルメッセージ
main.cpp: In function ‘ll read()’:
main.cpp:12:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
12 | scanf("%lld",&i);
| ~~~~~^~~~~~~~~~~
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll=long long;
#define int ll
#define FOR(i,a,b) for(int i=int(a);i<int(b);i++)
#define REP(i,b) FOR(i,0,b)
int read(){
int i;
scanf("%lld",&i);
return i;
}
signed main(){
// your code goes here
int N=read(),D=read();
int A=0,B=0,C=0;
int dif=D-N;
if(dif>=0) B=dif;
else C=-dif;
A=D-2*B;
REP(i,A) printf("A");
REP(i,B) printf("B");
REP(i,C) printf("C");
}