結果
問題 |
No.82 市松模様
|
ユーザー |
![]() |
提出日時 | 2025-03-27 13:12:28 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 291 bytes |
コンパイル時間 | 485 ms |
コンパイル使用メモリ | 27,392 KB |
実行使用メモリ | 7,324 KB |
最終ジャッジ日時 | 2025-03-27 13:12:30 |
合計ジャッジ時間 | 1,370 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 5 WA * 2 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:5:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | scanf("%d%d",&yoko,&tate); | ~~~~~^~~~~~~~~~~~~~~~~~~~ main.cpp:8:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%s",str); | ~~~~~^~~~~~~~~~
ソースコード
#include <stdio.h> int main(){ int yoko,tate; scanf("%d%d",&yoko,&tate); char str[1]; scanf("%s",str); for(int i = 0;i < tate;i ++){ for(int j = 0;j < yoko;j ++){ printf("%s",str); if(str[0] == 'W'){ str[0] = 'B'; }else{ str[0] = 'W'; } } printf("\n"); } }