結果

問題 No.3379 Third Max (C++)
コンテスト
ユーザー souta-1326
提出日時 2025-11-22 14:44:08
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 101 bytes
コンパイル時間 1,808 ms
コンパイル使用メモリ 195,136 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2025-11-22 14:44:12
合計ジャッジ時間 3,718 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 15
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:1:2: warning: #import is a deprecated GCC extension [-Wdeprecated]
    1 | #import<bits/stdc++.h>
      |  ^~~~~~
main.cpp:2:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
    2 | main(){char s[20];scanf("%[^q]%*c",s);std::sort(s,s+19);printf("%c\n",s[16]);}
      | ^~~~
main.cpp: In function ‘int main()’:
main.cpp:2:24: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    2 | main(){char s[20];scanf("%[^q]%*c",s);std::sort(s,s+19);printf("%c\n",s[16]);}
      |                   ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #
raw source code

#import<bits/stdc++.h>
main(){char s[20];scanf("%[^q]%*c",s);std::sort(s,s+19);printf("%c\n",s[16]);}
0