結果
| 問題 | No.46 はじめのn歩 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-05-04 19:57:06 |
| 言語 | C (gcc 15.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 164 bytes |
| 記録 | |
| コンパイル時間 | 1,093 ms |
| コンパイル使用メモリ | 34,816 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-04 19:57:08 |
| 合計ジャッジ時間 | 1,752 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 2 WA * 8 |
ソースコード
#include <stdio.h>
int main(){
long long a,b,ans;
scanf("%lld %lld",&a,&b);
if (a%b==0){
ans=a/b;
}
else{
ans=(a/b)+1;
}
printf("%lld",ans);
return 0;
}