結果
問題 | No.388 階段 (1) |
ユーザー |
![]() |
提出日時 | 2020-05-12 09:26:53 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 257 bytes |
コンパイル時間 | 186 ms |
コンパイル使用メモリ | 27,904 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-22 10:19:18 |
合計ジャッジ時間 | 924 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 |
ソースコード
#include<stdio.h> #include<stdlib.h> #include<string.h> int main(void){ char c[10]; int a; int b; fgets(c, sizeof(c), stdin); a = atoi(strtok(c, " ")); b = atoi(strtok(NULL, " ")); printf("%d", (a + b) / b); return 0; }