結果
| 問題 | No.299 蟻本が読めない |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-03-15 13:33:57 |
| 言語 | C90 (gcc 12.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 1,000 ms |
| コード長 | 122 bytes |
| コンパイル時間 | 205 ms |
| コンパイル使用メモリ | 19,968 KB |
| 実行使用メモリ | 6,940 KB |
| 最終ジャッジ日時 | 2024-07-03 23:51:03 |
| 合計ジャッジ時間 | 768 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
コンパイルメッセージ
main.c: In function ‘main’:
main.c:6:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
6 | scanf("%lld",&n);
| ^~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h>
int main(void) {
long long int n;
scanf("%lld",&n);
printf("%lld\n",52*(n-1)+316);
return 0;
}