結果

問題 No.3091 Empty
ユーザー bokunyannbokunyann
提出日時 2022-06-25 22:45:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 71 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 28,544 KB
実行使用メモリ 6,816 KB
最終ジャッジ日時 2024-04-27 11:06:02
合計ジャッジ時間 653 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:4:12: warning: character constant too long for its type
    4 |     char c='empty';
      |            ^~~~~~~
main.cpp: In function 'int main()':
main.cpp:4:12: warning: overflow in conversion from 'int' to 'char' changes value from '1836086393' to ''y'' [-Woverflow]

ソースコード

diff #

#include <stdio.h>
int main(void)
{
    char c='empty';
    return 0;
}
0