結果

問題 No.2011 Arbitrary Mod (Hidden)
ユーザー boatmuscles
提出日時 2022-07-15 22:31:24
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 93 bytes
コンパイル時間 649 ms
コンパイル使用メモリ 27,008 KB
最終ジャッジ日時 2025-01-30 08:20:38
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 43
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:5:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 |     scanf("%d", &n);
      |     ~~~~~^~~~~~~~~~

ソースコード

diff #

#include<cstdio>

int main(){
    int n;
    scanf("%d", &n);
    printf("268435457\n1\n");
}
0