結果
| 問題 |
No.1040 垂直大学
|
| コンテスト | |
| ユーザー |
suppy193
|
| 提出日時 | 2021-05-01 21:17:27 |
| 言語 | C90 (gcc 12.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 146 bytes |
| コンパイル時間 | 476 ms |
| コンパイル使用メモリ | 19,712 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-20 04:29:48 |
| 合計ジャッジ時間 | 1,142 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 15 WA * 2 |
コンパイルメッセージ
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);
if(n % 90 == 0){
printf("Yes\n");
}
else {
printf("No\n");
}
return 0;
}
suppy193