結果
| 問題 |
No.333 門松列を数え上げ
|
| コンテスト | |
| ユーザー |
suppy193
|
| 提出日時 | 2016-04-11 11:04:17 |
| 言語 | C90 (gcc 12.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 194 bytes |
| コンパイル時間 | 163 ms |
| コンパイル使用メモリ | 19,840 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-04 05:59:52 |
| 合計ジャッジ時間 | 656 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 |
コンパイルメッセージ
main.c: In function ‘main’:
main.c:5:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
5 | scanf("%lld%lld", &a, &b);
| ^~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h>
int main(void) {
long long int a, b;
scanf("%lld%lld", &a, &b);
if(a < b){
printf("%lld\n", b - 2);
}
else{
printf("%lld\n", 2000000000 - b - 1);
}
return 0;
}
suppy193