結果
問題 |
No.312 置換処理
|
ユーザー |
![]() |
提出日時 | 2017-06-17 09:40:04 |
言語 | C (gcc 13.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 198 bytes |
コンパイル時間 | 113 ms |
コンパイル使用メモリ | 28,544 KB |
実行使用メモリ | 13,644 KB |
最終ジャッジ日時 | 2024-10-01 09:27:57 |
合計ジャッジ時間 | 3,493 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 1 TLE * 1 -- * 43 |
ソースコード
#include <stdio.h> int main(void){ long int N; scanf("%ld",&N); long int i; for(i = 3; i <= N; i++){ if((N % i) == 0){ printf("%ld",i); goto end; } } end: return 0; }