結果
問題 | No.8078 Very Simple Traveling Salesman Problem |
ユーザー |
|
提出日時 | 2022-07-27 15:10:22 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 79 bytes |
コンパイル時間 | 111 ms |
コンパイル使用メモリ | 25,088 KB |
最終ジャッジ日時 | 2025-01-30 14:27:55 |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 10 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:4:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 4 | scanf("%d", &n); | ~~~~~^~~~~~~~~~
ソースコード
#include<cstdio>int n;int main(){scanf("%d", &n);printf("%d", n);}