結果
問題 | No.207 世界のなんとか |
ユーザー |
![]() |
提出日時 | 2025-03-03 15:44:15 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 182 bytes |
コンパイル時間 | 465 ms |
コンパイル使用メモリ | 27,392 KB |
実行使用メモリ | 8,612 KB |
最終ジャッジ日時 | 2025-03-03 15:44:20 |
合計ジャッジ時間 | 3,509 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 19 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:9:26: warning: format ‘%s’ expects argument of type ‘char*’, but argument 2 has type ‘int’ [-Wformat=] 9 | printf("%s",str); | ~^ ~~~ | | | | | int | char* | %d main.cpp:5:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | scanf("%d",&val); | ~~~~~^~~~~~~~~~~
ソースコード
#include <stdio.h>int main(void){int val = 0;scanf("%d",&val);for(int i = 0;i <= val;i++){char str = i;printf("%s",str);if(i % 3 == 0){printf("%d",i);}}}