結果
問題 |
No.82 市松模様
|
ユーザー |
![]() |
提出日時 | 2025-03-27 13:15:54 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 390 bytes |
コンパイル時間 | 353 ms |
コンパイル使用メモリ | 27,264 KB |
実行使用メモリ | 7,324 KB |
最終ジャッジ日時 | 2025-03-27 13:15:55 |
合計ジャッジ時間 | 854 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 7 |
コンパイルメッセージ
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'; } } if(yoko % 2 == 0){ if(str[0] == 'W'){ str[0] = 'B'; }else{ str[0] = 'W'; } } printf("\n"); } }