結果
問題 | No.299 蟻本が読めない |
ユーザー | Haijinn |
提出日時 | 2016-10-18 21:30:16 |
言語 | C90 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 135 bytes |
コンパイル時間 | 279 ms |
コンパイル使用メモリ | 19,584 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-05-02 02:47:55 |
合計ジャッジ時間 | 2,913 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,752 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
コンパイルメッセージ
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("%d",&n); | ^~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(void) { int n; scanf("%d",&n); int t=316; while(n>1){ t=t+52; } printf("%d",t); return 0; }