結果
問題 |
No.8085 Math...?
|
ユーザー |
👑 ![]() |
提出日時 | 2021-04-01 20:14:42 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 219 bytes |
コンパイル時間 | 2,725 ms |
コンパイル使用メモリ | 189,976 KB |
最終ジャッジ日時 | 2025-01-20 05:25:28 |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | WA * 26 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:9:15: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | int Q; scanf("%d",&Q); | ~~~~~^~~~~~~~~
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; using ull=unsigned long long; #define rep(i,n) for(int i=0; i<(n); i++) int main(){ int Q; scanf("%d",&Q); rep(i,Q) printf("41\n"); return 0; }